/* Base styling */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #00fff7 0%, #ff007c 100%);
  font-family: 'Bitcount Grid Single', system-ui, sans-serif;
  color: white;
}

/* Header */
header {
  text-align: center;
  padding: 40px 20px;
}

.main-title {
  font-size: 3rem;
  color: #fff;
  text-shadow: 3px 3px 10px #ff007c;
  letter-spacing: 2px;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #00fff7;
  font-weight: bold;
  text-shadow: 2px 2px 8px #ff007c;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ff007c;
}

.intro-box {
  width:80%;
  margin:40px auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  box-shadow: 0 0 20px #ff007c, 0 0 40px #00fff7;
  text-align: center;
}



/* Masks sections */
.mask {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px auto;
  padding: 30px;
  width: 80%;
  border: 2px solid white;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 0, 124, 0.5);
}

.mask-text {
  flex: 1;
  color: white;
  padding-right: 20px;
  text-shadow: 2px 2px 5px black;
}

.mask-text h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgb(207, 207, 8)
}

.mask-text h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgb(154, 149, 149)
}

.mask-text h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgb(254, 105, 105)
}

.mask-text h5 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgb(219, 71, 245)
}

.mask-text h6 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgb(53, 236, 77)
}



.mask-image img {
  width: 200px;
  height: auto;
  border: 2px solid white;
  box-shadow: 0 0 10px #00fff7;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  color: #ccc;
  text-shadow: 1px 1px 5px black;
}
