/**
 * =====================================================
 * S/R CAFÉ - JAXXMUDDA EASTER EGG CSS
 * =====================================================
 * 
 * @package     srcafe
 * @version     2.0.0-alpha
 * @build       20251220
 * @codename    Liquid Glass
 * 
 * =====================================================
 */

#jaxxmudda {
  background: radial-gradient(circle, #000, #111);
  color: #0f0;
  text-align: center;
  padding: 50px;
  font-family: monospace;
}
.neon {
  font-size: 3em;
  text-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
}
.intro {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.rave-cat {
  width: 200px;
  margin: 10px;
  animation: pulse 1.5s infinite;
}
.telegram-button {
  background: #0088cc;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  box-shadow: 0 0 10px #0088cc;
}
@keyframes pulse {
  0% { transform: scale(1); filter: hue-rotate(0deg); }
  50% { transform: scale(1.1); filter: hue-rotate(180deg); }
  100% { transform: scale(1); filter: hue-rotate(360deg); }
}
