@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Russo+One&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at center, #050510 0%, #0a0015 60%, #000 100%);
  overflow-x: hidden;
  color: #fff;
  min-height: 100vh;
}

canvas#neon-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  background: transparent;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  position: relative;
  z-index: 2;
}

.logo-text {
  font-family: 'Russo One', sans-serif;
  font-size: 2rem;
  background: linear-gradient(90deg, #00f6ff, #b94cff, #00f6ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowShift 3s ease infinite;
  text-shadow: 0 0 15px #00f6ff80, 0 0 25px #b94cff80;
}

@keyframes glowShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logout-btn {
  background: none;
  border: 2px solid #00f6ff;
  padding: 8px 18px;
  border-radius: 8px;
  color: #00f6ff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.logout-btn:hover {
  background: #00f6ff;
  color: #000;
  box-shadow: 0 0 20px #00f6ff;
}

.main {
  text-align: center;
  position: relative;
  z-index: 2;
}

.welcome-text {
  font-size: 1.8rem;
  margin: 40px 0;
  color: #fff;
}
.welcome-text span {
  color: #00f6ff;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

.card {
  width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #00f6ff, #b94cff) 1;
  border-radius: 15px;
  box-shadow: 0 0 25px #00f6ff40;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px #00f6ff90, 0 0 60px #b94cff90;
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.card h3 {
  color: #00f6ff;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 20px;
}

.neon-btn {
  background: transparent;
  border: 2px solid #00f6ff;
  color: #00f6ff;
  padding: 8px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neon-btn:hover {
  background: linear-gradient(90deg, #00f6ff, #b94cff);
  color: #fff;
  box-shadow: 0 0 20px #00f6ff, 0 0 30px #b94cff;
}

.footer {
  text-align: center;
  margin-top: 60px;
  padding: 20px;
  font-size: 0.9rem;
  color: #888;
  position: relative;
  z-index: 2;
}

.footer a {
  color: #00f6ff;
  text-decoration: none;
}
.footer a:hover {
  color: #b94cff;
}
