/* Game-specific styles */
.game-page {
  background-color: #f9f9f9;
  font-family: 'Nunito Sans', sans-serif;
}

/* Top Navigation Bar */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  margin-bottom: 0;
}

.top-nav .nav-link {
  color: #555;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.top-nav .nav-link:hover {
  color: #0d6efd;
}

/* Header banner styles */
.game-banner {
  position: relative;
  height: 70vh;
  max-height: 480px;
  min-height: 300px;
  overflow: hidden;
  background-color: #18191a;
  margin-top: 0;
}

.game-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top:0;
  background-color: rgba(0, 0, 0, 0.2);
}

.game-title {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.game-developer {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Game content section */
.game-content {
  margin-top: -4rem;
  position: relative;
  z-index: 10;
}

.game-about {
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Game links styling */
.game-link {
  transition: all 0.2s ease;
  border: 1px solid #e0e0e0;
}

.game-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #ccc;
}

.game-link i {
  font-size: 1.25rem;
}

/* Developer card */
.developer-card {
  background-color: white;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.developer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.developer-name {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.developer-link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.developer-link:hover {
  text-decoration: underline;
}

.developer-link i {
  margin-right: 0.5rem;
}

/* Remove platform pill styles */ 
.thisCompany strong, .thisCompany b{
  font-weight: bold;
}