@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0d0f1a;
  color: #00ffe1;
  font-family: 'Fira Code', monospace;
  overflow-x: hidden;
  margin: 0;
  height: 100vh;
}

.flicker-bg {
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 100% { background-color: #0d0f1a; }
  50% { background-color: #0b0d18; }
  75% { background-color: #10131e; }
}

section {
  padding: 4rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
  opacity: 0;
}

h1, h2 {
  color: #00ffe1;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
}

p, .sub {
  color: #ddd;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.sub {
  color: #888;
}

button {
  background: #00ffe1;
  color: #0d0f1a;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 20px;
  text-transform: lowercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

button:hover {
  transform: scale(1.1);
  background: #ff0077;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.prompt {
  font-size: 1.5rem;
  color: #ff00ff;
}

.glow {
  color: #00ffe1;
  text-shadow: 0 0 5px #00ffe1, 0 0 15px #00ffe1;
}

a {
  color: #00ffe1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

html {
  scroll-behavior: smooth;
}

.enter-glitch {
  margin-top: 3rem;
}

[data-aos="fade-up"] {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
}

.projects-section {
  padding: 40px;
  color: #00ffea;
  border-radius: 10px;
}

.project-item {
  margin-bottom: 30px;
}

.scroll-dots {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.dot {
  font-size: 30px;
  color: #00ffea;
  cursor: pointer;
  padding: 10px;
  margin: 5px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.dot:hover {
  transform: scale(1.1);
  color: #ff0077;
}

#skills {
  padding: 2rem 0;
  text-align: center;
}

#skills h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.skill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.skill-item {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skill-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.skill-item span {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease-in-out;
  font-size: 30px;
  color: #00ffea;
}

.contact-link:hover {
  transform: scale(1.1);
  color: #ff0077;
}

.license-link {
  display: inline-block;
  margin-top: 8px;
  margin-right: 10px;
  margin-bottom: 16px;
  color: #00ffee;
  text-decoration: underline;
  transition: color 0.3s ease, transform 0.3s ease;
}

.license-link:hover {
  transform: scale(1.1);
  color: #ff0077;
}
