/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #202124;
  line-height: 1.6;
}

a {
  color: #1a73e8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Game Header */
.game-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.game-header img {
  width: 120px;
  height: 120px;
  border-radius: 20%;
  object-fit: cover;
}

.game-info {
  flex: 1;
}

.game-info h1 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}

.game-info p {
  font-size: 14px;
  color: #5f6368;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s;
}
.btn:hover {
  background: #1558b0;
}

/* Slider */
.slider {
  margin: 30px 0;
}
.slider-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-behavior: smooth;
}
.slider-container::-webkit-scrollbar {
  display: none;
}
.slider img {
  border-radius: 12px;
  width: 280px;
  height: 160px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Game Details */
.details {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-top: 20px;
}

.details h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.details p {
  font-size: 15px;
  color: #3c4043;
}

/* Rating & Stats */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}
.stat {
  text-align: center;
}
.stat h3 {
  font-size: 18px;
  font-weight: bold;
}
.stat p {
  font-size: 13px;
  color: #5f6368;
}
