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

/* Body Styles */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #0e0e0e;
  color: #f5f5f5;
  line-height: 1.6;
  padding: 0 1rem;
}

/* Header */
header {
  text-align: center;
  padding: 2.5rem 0;
  border-bottom: 2px solid #222;
}

header h1 {
  font-family: fantasy;
  text-align: center;
  font-size: 4rem;
  color: #a30202;
}

header p {
  color: #ffffff;
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

/* Main Sections */
.video-links {
  display: block;
  margin: 2rem 0;
  justify-content: center;
}

section {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

section img {
  width: 100%;
}

.top {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  padding-top: 15px;
}
section:hover {
  background: #222;
}

section h2 {
  color: #ce0015;
  margin-bottom: 0.5rem;
}

section p {
  color: #aaa;
  margin-bottom: 1rem;
}

/* Links */
a {
  display: inline-block;
  margin-right: 20px;
  text-decoration: none;
  color: #fff;
  background: #b80025;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

a:hover {
  background: #980106;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  border-top: 2px solid #222;
  color: #777;
  font-size: 0.9rem;
}
