/* Reset & body styling */
body, html {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

/* Main layout container */
.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Logo size control */
.logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
}

/* Heading and text */
h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  color: #333;
}


@keyframes rocketLaunch {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  30%  { transform: translateY(-10px) rotate(10deg); }
  60%  { transform: translateY(-30px) rotate(-10deg); }
  100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

.rocket-emoji {
  display: inline-block;
  animation: rocketLaunch 3s ease-in-out infinite;
}


.support-button {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background-color: #1e40af; /* deep blue */
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.support-button:hover {
  background-color: #1d4ed8;
  cursor: pointer;
}




