body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #1a1a1a;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  #background: #2b2b2b;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  padding: 40px;
  text-align: center;
  width: 90%;
  max-width: 800px;
  position: relative;
}
.logo {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
h1 {
  margin: 20px 0;
  font-size: 3em;
  letter-spacing: 4px;
  font-family: 'MedievalSharp', serif;
  /* Золотой градиент как у логотипа */
  background: linear-gradient(45deg, #f5c25a, #e5a530);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Светящееся свечение текста */
  text-shadow:
    0 0 5px rgba(245,194,90,0.8),
    0 0 10px rgba(229,165,48,0.6),
    0 0 20px rgba(229,165,48,0.4);
}
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
  justify-items: center;
}
.feature {
  position: relative;
  width: 64px;
  height: 64px;
  transition: transform 0.2s;
  cursor: pointer;
}
.feature img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.feature:hover {
  transform: scale(1.1);
  z-index: 1;
}
.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-size: 0.9em;
}
.feature:hover .tooltip {
  opacity: 1;
}