/* Global styling */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f48c06, #ffffff);
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.container {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  animation: fadeIn 1.5s ease-in-out;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
  font-weight: 700;
}

h2 {
  font-size: 1.1em;
  font-weight: 300;
  margin-bottom: 30px;
  color: #fff9f2;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  background: #fff;
  color: #f48c06;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #f48c06;
  color: #fff;
  transform: scale(1.05);
}

.owner {
  margin-top: 15px;
  color: #fff9f2;
  font-size: 0.95em;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
