
body {
  margin: 0;
  background-color: #111;
  font-family: Arial, sans-serif;
  color: white;
  font-size: 14px;
}

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background-color: #111;
  padding: 10px 0;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: bold;
}

.logo span {
  color: #ff2e74;
}

nav a {
  margin-left: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
}

.hero {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.section {
  padding: 30px 0;
}

h2 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.center-text {
  text-align: center;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.video-card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  max-width: 280px;
}

.video-card iframe {
  width: 100%;
  height: 400px;
}

.video-card p {
  margin: 0;
  padding: 8px;
  background-color: #ff2e74;
  font-weight: bold;
  text-align: center;
  font-size: 13px;
}

.subscribe-input {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 20px auto;
  justify-content: center;
}

.subscribe-input button {
  background-color: #ff2e74;
  border: none;
  padding: 8px 16px;
  color: white;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.subscribe-input button:hover {
  background-color: #e02065;
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

.view-all a {
  display: inline-block;
  background-color: #ff2e74;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.view-all a:hover {
  background-color: #e02065;
}

footer {
  text-align: center;
  background-color: #ff2e74;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 10px 5px;
    display: block;
  }

  .video-card iframe {
    height: 250px;
  }

  .subscribe-input {
    flex-direction: column;
    width: 100%;
  }

  .subscribe-input button {
    width: 100%;
  }

  .hero {
    max-height: 250px;
  }
}
