/* Base */
body {
  font-family: 'Ubuntu Mono', monospace;
  background-color: #0a0a0a;
  background-image: url('Anime-Girl1.png');
  background-size: cover;
  background-position: center;
  color: #e0e7ff;
  margin: 0;
  padding: 0;
}

/* Sections */
.transparent-section {
  background-color: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.transparent-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 204, 0.8);
}

/* Text & Links */
.hacker-text {
  color: #00ffcc;
  text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
}

a {
  color: #ff00ff;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

/* Cards */
.skill-card {
  transition: all 0.3s ease;
  border: 1px solid #00ffcc;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 204, 0.5);
}

/* Timeline */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #00ffcc;
}

/* Gallery Cards */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.card {
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card .content {
  padding: 15px;
}

.card h3 {
  margin: 0 0 10px;
}

/* Data Center Animation */
.data-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: -1;
}
/* images Cards and screenshotst*/
.centered-image {
  display: block;
  margin: 20px auto;
  max-width: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 255, 204, 0.2);
  border: 1px solid #00ffcc33;
}
.image-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(20, 20, 20, 0.8);
  border: 1px solid #00ffcc55;
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 600px;
  box-shadow: 0 8px 20px rgba(0, 255, 204, 0.3);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
}

.image-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.image-card h2 {
  color: #00ffcc;
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
  font-size: 1.25rem;
  margin-top: 0.75rem;
}



/*buttons control*/
.nav-button {
  display: inline-block;
  margin: 20px 10px;
  padding: 12px 24px;
  background-color: rgba(0, 255, 204, 0.1);
  border: 1px solid #00ffcc;
  color: #00ffcc;
  font-family: 'Ubuntu Mono', monospace;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #00ffcc;
  color: #0a0a0a;
  box-shadow: 0 0 10px #00ffcc;
  transform: translateY(-2px);
}


.data-center .line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #00ffcc, transparent);
  animation: move 1.5s linear infinite;
}

@keyframes move {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.data-center .line:nth-child(1) { left: 10%; animation-duration: 2s; }
.data-center .line:nth-child(2) { left: 30%; animation-duration: 2.5s; }
.data-center .line:nth-child(3) { left: 50%; animation-duration: 3s; }
.data-center .line:nth-child(4) { left: 70%; animation-duration: 2.2s; }
.data-center .line:nth-child(5) { left: 90%; animation-duration: 2.8s; }
