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

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #2b2b2b, #6e6e6e, #8c704f);
  background-size: 600% 600%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  animation: gradientPulse 15s ease infinite;
}

@keyframes gradientPulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: 90%;
  padding: 20px;
  z-index: 1;
  background: transparent;
  box-shadow: none;
  border: none;
  word-wrap: break-word;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
  white-space: normal;
  text-shadow: none;
  line-height: 1.2;
}

p {
  font-size: 1.2em;
  opacity: 0.9;
  color: #eee;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pulse {
  display: inline-block;
  animation: pulse 6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.footer-logo {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-height: 60px;
  z-index: 1000;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.9));
  background: transparent;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .footer-logo {
    max-height: 40px;
    bottom: 5px;
  }
}
