@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Roboto:wght@400&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(180deg, #b30000 0%, #8b0000 100%);
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  padding-top: 80px;
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 1px;
}

.motto {
  font-style: italic;
  margin: 10px 0 30px;
  font-size: 1.1rem;
}

.watch-button {
  display: inline-block;
  background-color: white;
  color: #b30000;
  padding: 15px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.watch-button:hover {
  background-color: #ffe6e6;
  transform: scale(1.05);
}

footer {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  font-size: 0.9rem;
}
