/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

/* Header Styles */
.title {
  font-size: 4rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #000, #333);
  padding: 100px 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  border-bottom: 5px solid #e60000;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 40px;
}

/* Section Headings */
h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #ff2e2e;
  border-left: 5px solid #ff2e2e;
  padding-left: 10px;
  margin-bottom: 15px;
}

/* Sections */
section {
  padding: 40px 20px;
  background-color: #111;
}

/* Audio Player */
audio {
  width: 100%;
  margin: 20px 0;
}

/* Links */
a {
  color: #ff2e2e;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}

/* Lists */
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
ul li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

/* Contact and Social */
footer {
  background-color: #e60000;
  text-align: center;
  padding: 30px 20px;
  color: #fff;
  font-size: 0.9rem;
}

footer a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}
