/* Base Styles */
body {
  margin: 0;
  font-family: 'Press Start 2P', cursive, sans-serif;
  background: linear-gradient(135deg, #0f0f2e, #1a1aff, #ffffff00);
  color: #e0e0ff;
  overflow-x: hidden;
  position: relative;
}

.background-glow {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(26, 26, 255, 0.2), transparent 60%);
  z-index: -1;
  animation: pulse 5s infinite;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.subtitle {
  font-size: 0.9em;
  color: #dcdcff;
  text-align: center;
}

.neon-text {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Profile Section */
.profile {
  text-align: center;
  padding: 20px;
  border: 2px dashed #00ffff;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.profile-pic {
  width: 150px;
  border-radius: 50%;
  transition: transform 0.5s ease-in-out;
}

.profile-pic:hover {
  transform: rotate(360deg) scale(1.1);
}

/* Buttons */
.neon-btn {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  font-size: 14px;
  font-family: inherit;
  color: #00ffff;
  background: none;
  border: 2px solid #00ffff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.neon-btn:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.glitch {
  position: relative;
  animation: glitch 1s infinite;
}

/* Journal Preview */
.journal-preview {
  margin-top: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #00ffff;
  border-radius: 10px;
  font-size: 14px;
}

.date {
  color: #ff66cc;
  font-style: italic;
}

/* Menu */
.menu {
  margin-top: 30px;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  margin: 10px 0;
}

.menu a {
  color: #00ffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.menu a:hover {
  color: #ff66cc;
}

/* Hidden Cat (Easter Egg) */
.hidden-cat {
  display: none;
  text-align: center;
  margin-top: 30px;
  animation: float 3s infinite ease-in-out;
}

.hidden-cat img {
  width: 100px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #ccc;
}

.badges img {
  margin: 5px;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes glitch {
  0% { clip-path: inset(0 100% 0 0); }
  50% { clip-path: inset(50% 0 50% 0); }
  100% { clip-path: inset(0 0 0 100%); }
}