body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #fff;
}

.container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.left {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  background-color: #ff9800;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;

  white-space: nowrap;    /* Prevent line breaks */
  display: inline-block;  /* Ensure width fits content */
}

.btn:hover {
  background-color: #e68900;
}

.btn.outline {
  background-color: transparent;
  border: 2px solid #ff9800;
  color: #ff9800;
}

.btn.outline:hover {
  background-color: #ff9800;
  color: #000;
}

.instructions {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.instructions.show {
  max-height: 500px; /* big enough for content */
  opacity: 1;
}


.instructions h3 {
  position: relative;
  margin-top: 20px;
  color: #ff9800;
}


.instructions a {
  color: #ff9800;
  text-decoration: underline;
}

.right {
  flex: 1;
  background: radial-gradient(circle at top right, #1e1e1e, #121212);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.right img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
   animation: float 4s ease-in-out infinite;
}