body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0f1c;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #0a0f1c;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: lowercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px 0;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  animation: fadeIn 2s ease-out 0.5 forwards;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.devlog-list {
  padding: 40px;
  color: white;
}

.devlog-list h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.devlog-list ul {
  list-style: none;
  padding: 0;
}

.devlog-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  background-color: #121826;
  padding: 15px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.devlog-list li:hover {
  background-color: #1a2332;
}

.devlog-list a {
  color: #4fc3f7;
  text-decoration: none;
  margin-left: 10px;
}

.devlog-list span {
  color: #888;
  margin-left: 10px;
}

.about-section {
  padding: 40px;
  color: white;
  max-width: 800px;
  margin: auto;
}

.about-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  background-color: #121826;
  padding: 20px;
  border-radius: 6px;
}

.slideshow-container {
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px 0;
  margin-top: 40px;
}

.slideshow {
  display: inline-flex;
  gap: 20px;
  scroll-behavior: smooth;
}

.slideshow img {
  height: 200px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.slideshow img:hover {
  transform: scale(1.05);
}

.games-section {
  padding: 40px;
  color: white;
  max-width: 900px;
  margin: auto;
}

.games-section h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.game-card {
  background-color: #121826;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  transition: background-color 0.3s ease;
}

.game-card:hover {
  background-color: #1a2332;
}

.game-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.game-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.game-card a {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: bold;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.4);
  z-index: 1;
}

.game-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: white;
  text-align: center;
  max-width: 700px;
}

.game-card-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.game-card-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.game-card-content a {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: bold;
}





