@font-face {
    font-family: 'NF Pixels';
    src: url('fonts/NFPixels-Regular.eot');
    src: url('fonts/NFPixels-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/NFPixels-Regular.woff2') format('woff2'),
        url('fonts/NFPixels-Regular.woff') format('woff'),
        url('fonts/NFPixels-Regular.ttf') format('truetype'),
        url('fonts/NFPixels-Regular.svg#NFPixels-Regular') format('svg');
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

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


.nav-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3vw;
}

.nav-divider::before,
.nav-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #494f5c;
}


.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  padding: 0 3vw;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #494f5c;
}

.section-divider span {
  margin: 0 20px;
  color: #bec3ca;
  font-size: 1.8rem;
  letter-spacing: 5px;
}


body {
  font-family: 'NF Pixels', Arial;
  font-size: 20px;
  font-weight: 500;
  background-color: #212126;
  color: #333;
}


header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  color: white;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #41a3ff;
}


#hero {
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}

.hero-banner {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  max-width: 100%;
  width: 325px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  color: white;
  letter-spacing: 6px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.5rem;
  color: #bec3ca;
}


#games {
  padding: 40px 5vw;
  display: flex;
  justify-content: center;
}

.games-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 60px;
}

.game-card {
  width: 100%;
  max-width: 300px;
  background-color: #25252c;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  --shadow-accent: #c4d7ff
}

.game-card:hover {
  box-shadow: 0 0 20px var(--shadow-accent);
}

.game-banner {
  width: 100%;
  height: 170px;
  overflow: hidden;
  position: relative;
}

.game-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.game-banner:hover img {
  transform: scale(1.2);
}

.game-title {
  padding: 15px 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: #e0e0e0;
  text-align: center;
  letter-spacing: 3px;
}


footer {
  background-color: #1a1b1b;
  color: #aeb2bd;
  text-align: center;
  padding: 30px 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  border-top: 1px solid #333335;
}

footer a {
  color: #41a3ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #99c5ff;
}


#links {
  padding: 40px 5vw;
  display: flex;
  justify-content: center;
}

.links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 60px;
}

.link-card {
  width: 100%;
  max-width: 300px;
  height: 100px;
  background-color: #25252c;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  --shadow-accent: #c4d7ff
}

.link-card:hover {
  box-shadow: 0 0 20px var(--shadow-accent);
}

.link-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.link-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.link-banner:hover img {
  transform: scale(1.12);
}