* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #0f0f0f;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar {
  background: #111;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
}
.circle-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
}
.nav-right a {
  color: #ccc;
  text-decoration: none;
  margin-left: 25px;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.nav-right a:hover {
  color: white;
}

/* Hero */
.hero {
  height: 70vh;
  background: url('https://i.ibb.co/7dk7Ly1X/0-Vog-K8o-B22-E2-LD8-O.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero-logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 25px;
}
.hero-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
}
.stroke-text {
  font-size: 3.2rem;
  color: white;
  text-shadow: -1px -1px 0 #000,
               1px -1px 0 #000,
               -1px 1px 0 #000,
               1px 1px 0 #000;
}
.blue-button {
  padding: 14px 32px;
  font-size: 1.2rem;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.blue-button:hover {
  background: #005fd4;
}

/* About Section */
.about {
  padding: 100px 30px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.about h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.about p {
  font-size: 1.1rem;
  color: #cfcfcf;
}

/* Games Section */
/* Games Section */
.games-section {
  padding: 100px 30px;
  text-align: center;
}
.games-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: white;
}

.game-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.game-card {
  width: 300px;
  background-color: #1a1a1a;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}
.game-card:hover {
  transform: scale(1.02);
}
.game-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}
.game-title {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 15px;
}
.play-button {
  display: inline-block;
  padding: 10px 22px;
  background-color: #28a745;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.play-button:hover {
  background-color: #218838;
}
