body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-attachment: fixed;
}

.container {
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #e30613; /* Brand accent color */
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(227, 6, 19, 0.5);
  font-weight: 700;
}

.address {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #e30613, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  font-weight: 700;
}

.tagline {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.animation-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 20px;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .animation-container {
    /* margin: 0 20px 40px 20px; */
    max-width: calc(100% - 40px);
  }
}
