@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Cinzel:wght@600&display=swap');

body {
  margin: 0;
  background: radial-gradient(circle at center, #0b0012 0%, #000 100%);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  overflow-x: hidden;
}

/* Анимация свечения */
@keyframes glow {
  0% { text-shadow: 0 0 10px #a855f7, 0 0 20px #a855f7; }
  100% { text-shadow: 0 0 25px #a855f7, 0 0 40px #6b21a8; }
}

/* Эффект движущегося фона */
@keyframes move-bg {
  0% { background-position: 50% 50%; }
  50% { background-position: 55% 45%; }
  100% { background-position: 50% 50%; }
}

/* Навигация */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: #a855f7;
  animation: glow 2s infinite alternate;
}

.nav-links a {
  color: #a855f7;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.nav-links a:hover { color: #00ffcc; }

select {
  background: #a855f7;
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 6px 12px;
}

/* Герой секция */
#hero {
  text-align: center;
  padding: 160px 20px;
  background: url('images/rune-bg.jpg') center/cover no-repeat;
  animation: move-bg 12s ease-in-out infinite;
  box-shadow: inset 0 0 80px rgba(168, 85, 247, 0.3);
}

#hero h1 {
  font-size: 56px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow 2s infinite alternate;
}

#hero p {
  font-size: 20px;
  color: #a855f7;
  margin-bottom: 40px;
}

button {
  background: linear-gradient(90deg, #a855f7, #6b21a8);
  border: none;
  border-radius: 10px;
  color: #fff;
  padding: 14px 32px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  font-family: 'Orbitron', sans-serif;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #a855f7;
}

/* Секция ритуалов */
#services {
  text-align: center;
  padding: 80px 20px;
  background: #050007;
}

#services h2 {
  color: #a855f7;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: rgba(26, 0, 32, 0.8);
  padding: 24px;
  border-radius: 12px;
  width: 280px;
  transition: 0.3s;
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}

footer {
  background: #0a0010;
  color: #888;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}

