/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: black;
  color: #ddd;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}

.logo span {
  font-size: 5rem;
  color: #ff0000;
  text-shadow: 0 0 10px #ff0000;
  display: block;
  margin-bottom: 0.5rem;
  transform: rotate(-10deg);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% { text-shadow: 0 0 10px #ff0000; }
  50% { text-shadow: 0 0 20px #ff4444, 0 0 40px #990000; }
}

h1 {
  font-size: 3.5rem;
  color: #ff0000;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px #ff0000;
}

.tagline {
  font-size: 1.1rem;
  color: #5bc0de;
  font-style: italic;
}

main {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: #0f0f0f;
  border-left: 6px solid #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
  transition: all 0.3s ease;
}

section:hover {
  background-color: #121212;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
}

h2 {
  color: #ff3333;
  font-size: 2rem;
  margin-bottom: 1rem;
}

ul {
  list-style: square inside;
  color: #aaa;
}

ul li {
  margin: 0.5rem 0;
}

a {
  color: #5bc0de;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #666;
  background-color: #070707;
  border-top: 1px solid #111;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

th, td {
  padding: 1em;
  border: 1px solid #ccc;
  text-align: left;
}

