
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #1a1a1a, #2c1e2f, #3b2d2d, #2f2233);
  color: #eee;
  background-size: 400% 400%;
  animation: gradientFlow 30s ease infinite;
}

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

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
  border: 5px double #774477;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
  border-radius: 16px;
}

header .top-banner {
  background: rgba(90, 40, 90, 0.8);
  border: 2px dashed #ff00aa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.top-banner h2 {
  color: #ffdd55;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
}

.top-banner p {
  line-height: 1.6;
  font-size: 1rem;
}

.main-title h1 {
  font-size: 2rem;
  color: #ff6699;
  text-shadow: 0 0 10px #ff66cc;
}

.main-title h2 {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.content h3 {
  color: #ffff66;
  border-bottom: 1px solid #aa66aa;
  padding-bottom: 0.5rem;
}

.content ul {
  list-style-type: circle;
  padding-left: 20px;
}

.contact-box {
  background: #261a26;
  padding: 20px;
  border: 2px solid #aa55aa;
  border-radius: 10px;
  margin-top: 20px;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 30px;
  color: #888;
}

.phone-banner {
  width: 100%;
  background: #300030;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.glow {
  animation: glowAnim 1.5s infinite alternate;
  box-shadow: 0 0 10px #ff00cc, 0 0 20px #ff00cc, 0 0 30px #ff00cc;
}

@keyframes glowAnim {
  from {
    box-shadow: 0 0 5px #ff00cc;
  }
  to {
    box-shadow: 0 0 20px #ff33ff;
  }
}
