/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d1b2a;
  padding: 15px 50px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .logo {
  height: 45px;
  width: 45px;
  object-fit: contain;
}
.site-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #00d4ff;
}

/* Hero Section */
.hero {
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .overlay {
  background:url(cpbg.png);
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.3rem;
}

/* About Section */
.about-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.about-content .text {
  flex: 1;
}
.about-content .image {
  flex: 1;
}
.about-content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
  background: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}
.features h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #14213d;
}
.feature-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: rgb(241, 91, 4);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}
.feature-card img {
  width: 60px;
  margin-bottom: 15px;
}

/* Other Game Section */
.other-game {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
}
.game-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.game-content .image, .game-content .text {
  flex: 1;
}
.game-content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content, .game-content {
    flex-direction: column;
  }
  .nav-links {
    gap: 15px;
  }
}
