/* ===== BASIC RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(circle at 50% 30%, #0a0a0a, #000);
  background-size: 200% 200%;
  color: #e6faff;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}

header h1 {
  font-size: 3rem;
  font-family: 'Orbitron', sans-serif;
  color: #00fff7;
  text-shadow: 0 0 15px #00fff7;
  animation: flicker 2s infinite alternate;
}

header p {
  font-size: 1.2rem;
  color: #bbb;
  margin-top: 0.5rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 4rem;
  gap: 3rem;
}

.part {
  width: 90%;
  max-width: 850px;
  background: rgba(15, 15, 20, 0.7);
  border: 1px solid rgba(0, 255, 247, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.part:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 0 40px rgba(0, 255, 247, 0.3);
}

.part img {
  width: 300px;
  max-width: 90%;
  margin-bottom: 1rem;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.2);
  transition: transform 0.3s ease;
}

.part img:hover {
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(0, 255, 247, 0.5);
}

.info h2 {
  font-size: 2rem;
  font-family: 'Orbitron', sans-serif;
  color: #00fff7;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px #00fff7;
}

.info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d6f6ff;
}

.part:last-child {
  border: 1px solid #00fff7;
  background: rgba(0, 20, 20, 0.6);
  box-shadow: 0 0 50px rgba(0, 255, 247, 0.5);
}

@keyframes flicker {
  0% { opacity: 1; text-shadow: 0 0 15px #00fff7; }
  100% { opacity: 0.85; text-shadow: 0 0 30px #00fff7; }
}
