@import url('https://fonts.googleapis.com/css2?family=Impact&display=swap');

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

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
}

h1 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(4rem, 15vw, 12rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  background: linear-gradient(180deg, #ff0000 0%, #ff6600 50%, #ffcc00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 1.5s ease-in-out infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(255, 50, 0, 0.6));
}

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(255, 50, 0, 0.6)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 60px rgba(255, 50, 0, 0.9)); }
}
