
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #111;
  color: #eee;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero-logo {
  width: 200px;
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 2.5em;
  color: #0ff;
  margin-top: 10px;
}

.intro-text {
  font-size: 1.1em;
  margin-top: 20px;
  line-height: 1.6;
}

.embeds iframe {
  width: 100%;
  border: none;
  margin-bottom: 20px;
}

.social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  justify-items: center;
  align-items: center;
  padding: 20px 0;
}

.social img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #0ff);
}

.subscribe-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.subscribe-section input[type="email"] {
  padding: 10px;
  width: 80%;
  max-width: 400px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1em;
}

.subscribe-section button {
  padding: 10px 20px;
  background: #0ff;
  border: none;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-section button:hover {
  background: #0cc;
}

footer {
  background: #222;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: #999;
}
