@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

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

body, html {
  font-family: 'Orbitron', sans-serif;
  height: 100%;
  overflow-x: hidden;
  color: #00ffe7;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.parallax-background {
  background-image: url(../images/bg.jpg) !important;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.15;
  filter: blur(2px);
}

.header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid #00ffe7;
  position: relative;
  z-index: 50;
}

.logo {
  font-size: 28px;
  color: #00ffe7 !important;
  text-shadow: 0 0 10px #00ffe7 !important;
  align-content: center;
}

#navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px; /* o lo que mida */
	transition: top 0.3s ease-in-out;
	z-index: 999;
}

.nav a {
  color: #00ffe7;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ff00cc;
}
.main-header .header-wrapper .header-container .navigation .nav-item {
    color: #00ffe7 !important;
}

.page-wrapper .content-wrapper {
	margin-top: 60px !important;
}

.main {
  padding: 45px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.intro h2 {
  font-size: 36px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #00ffe7;
}

.intro p {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  color: #d3fefe;
}

.portal-button {
  margin-top: 30px;
  display: inline-block;
  background: linear-gradient(45deg, #00ffe7, #ff00cc);
  color: #000;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 0 20px #00ffe7;
  transition: all 0.4s ease;
}

.portal-button:hover {
  box-shadow: 0 0 30px #ff00cc, 0 0 10px #00ffe7;
  transform: scale(1.05);
  color: #fff;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.game-card {
  background: rgba(0, 10, 20, 0.7);
  border: 1px solid #00ffe7;
  padding: 30px;
  width: 280px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffe7;
}

.glow {
  box-shadow: 0 0 10px #00ffe7, inset 0 0 10px #00ffe7;
}

.footer {
  margin-top: 80px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #00ffe7;
  background: rgba(0, 0, 0, 0.6);
  transition: bottom 0.3s ease-in-out;
}
