/* Fonts & Basic */
body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: linear-gradient(135deg,#0f0c29,#302b63,#24243e);
  color: #fff;
  scroll-behavior: smooth;
}

header {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.7);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #00ffea;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ff00d6;
  text-shadow: 0 0 10px #ff00d6;
}

.lang-switch button {
  margin: 0 5px;
  padding: 5px 10px;
  cursor: pointer;
  background: #222;
  border: 1px solid #00ffea;
  color: #00ffea;
  font-weight: bold;
  transition: 0.3s;
}

.lang-switch button:hover {
  background: #00ffea;
  color: #000;
}

.hero img {
  width: 320px;
  cursor: pointer;
  transition: 0.4s transform;
}

.hero img:hover {
  transform: scale(1.1) rotate(-5deg);
}

.hero .subtitle {
  font-size: 18px;
  margin-top: 10px;
  text-shadow: 0 0 10px #00ffea;
}

/* Sections */
section {
  padding: 50px 20px;
  text-align: center;
}

.section-gradient {
  background: linear-gradient(90deg, rgba(0,255,234,0.2), rgba(255,0,214,0.2));
  border-radius: 15px;
  margin: 20px auto;
  width: 90%;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0,255,234,0.5);
  transition: transform 0.3s;
}

.section-gradient:hover {
  transform: translateY(-5px);
}

/* Fancy Boxes */
.fancy-box {
  background: rgba(0,0,0,0.5);
  border: 2px solid #00ffea;
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  box-shadow: 0 0 15px #00ffea;
  transition: 0.3s transform;
}

.fancy-box:hover {
  transform: scale(1.05);
}

/* Buttons */
.fancy-btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  background: #00ffea;
  border-radius: 10px;
  box-shadow: 0 0 15px #00ffea;
  transition: 0.3s;
}

.fancy-btn:hover {
  background: #ff00d6;
  box-shadow: 0 0 25px #ff00d6;
  color: #fff;
  transform: scale(1.1);
}

/* Lists */
.fancy-list li {
  margin: 10px 0;
  padding: 10px;
  border-left: 5px solid #00ffea;
  text-align: left;
  display: inline-block;
  width: 80%;
  transition: 0.3s;
}

.fancy-list li:hover {
  border-left-color: #ff00d6;
  transform: translateX(5px);
}

/* Team */
.team-members {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-members .member {
  background: rgba(0,0,0,0.6);
  border: 2px solid #00ffea;
  border-radius: 15px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 0 15px #00ffea;
  transition: 0.3s transform;
}

.team-members .member:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #ff00d6;
  box-shadow: 0 0 25px #ff00d6;
}

/* Forms */
form input, form textarea {
  display: block;
  width: 80%;
  margin: 15px auto;
  padding: 15px;
  border: 2px solid #00ffea;
  border-radius: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-family: 'Press Start 2P', cursive;
}

form button {
  width: 40%;
  margin-top: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.7);
  text-shadow: 0 0 10px #00ffea;
}
