/* Dark background + light text */
body {
  font-family: 'Arial', sans-serif;
  max-width: 700px;
  margin: auto;
  padding: 2rem;
  line-height: 1.6;
  background-color: #121212;  /* Dark background */
  color: #f5f5f5;             /* Light text */
}

/* Header styling */
header {
  text-align: center;
  margin-bottom: 3rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff; /* Bright headline */
}

p {
  color: #cccccc; /* Slightly dimmer for readability */
}

/* Input and button styling */
input[type="email"] {
  padding: 0.5rem;
  font-size: 1rem;
  width: 60%;
  margin-right: 0.5rem;
  border: none;
  border-radius: 4px;
}

button {
  padding: 0.55rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: #ff9500;  /* Accent color */
  border: none;
  border-radius: 4px;
  color: #fff;
  margin-top: 0.5rem; /* adds space between the email box and button */
}

/* Sections */
section {
  margin-bottom: 2rem;
}

/* Links (if any) */
a {
  color: #ff9500;
  text-decoration: none;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* optional, modern feel */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* optional, modern depth */
  margin-top: 1rem;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#updates {
  margin-bottom: 3rem;
}

.update {
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.update p {
  margin: 0.25rem 0;
}