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

body {
  font-family: Arial, sans-serif;
  background-color: #0b0223;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

header {
  text-align: center;
  margin: 2rem 1rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

main {
  width: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

iframe {
  border: none;
  width: 100%;
  height: 80vh;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

footer {
  text-align: center;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #aaa;
}

footer a {
  color: #ff42a5;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
