/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & fonts */
body {
  font-family: 'Courier New', monospace;
  background: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated gradient background */
.background {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #0ff, #f0f);
  background-size: 400% 400%;
  filter: blur(50px);
  z-index: -1;
  animation: gradientShift 30s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Main container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Header */
.name {
  font-size: 3rem;
  font-weight: bold;
  color: rgb(8, 8, 8);
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.subtitle {
  font-size: 1.2rem;
  color: rgb(9, 10, 10);
  text-shadow: 0 0 5px #0ff;
  margin-bottom: 3rem;
  text-align: center;
}

/* Cards */
.card {
  background: #111111;
  border: 1px solid #0ff;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  text-align: left;
  box-shadow: 0 0 16px #0ff33a66;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #0ff;
}

/* Card titles & text */
.card h2 {
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  margin-bottom: 1rem;
}

.card p, .card ul li, a {
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
}

/* List style for projects */
ul li {
  margin: 0.5rem 0;
}

ul li::before {
  content: "» ";
  color: #0ff;
}

/* Links */
a {
  text-decoration: none;
  color: #0ff;
  transition: color 0.2s ease;
}

a:hover {
  color: #f0f;
}
