/* Reset & Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000; /* Dark background */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* Logo */
.logo img {
  width: 200px;
  margin-bottom: 30px;
}

/* Headings */
h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #FFA500; /* OrangePlay theme */
}

p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #ccc;
}

/* Buttons - Base */
.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: #e50914; /* Netflix red */
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.buttons a:hover {
  background: #b20710;
  transform: translateY(-3px);
}

/* Footer */
footer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: #777;
}

/* Desktop View: Bigger Buttons */
@media (min-width: 768px) {
  .buttons a {
    padding: 20px 50px;   /* bigger button */
    font-size: 1.3rem;    /* larger text */
    border-radius: 10px;
  }

  h1 {
    font-size: 2.8rem;
  }

  p {
    font-size: 1.3rem;
  }
}
