body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1b2838;
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

header {
  background-color: #171a21;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #c7d5e0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #66c0f4;
}

.logo-img {
  height: 40px;
}

.section-title {
  padding: 30px;
  font-size: 24px;
  color: #66c0f4;
}

section {
  padding: 40px 60px;
  margin-bottom: 40px;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 30px 40px 30px;
}

.game-card {
  background-color: #2a475e;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s;
}

.game-card:hover {
  transform: scale(1.03);
}

.game-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.game-info {
  padding: 10px;
}

.game-title {
  font-size: 16px;
  color: #c7d5e0;
  margin-bottom: 5px;
}

.game-price {
  color: #a4d007;
  font-size: 14px;
}

.banner-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  background-color: #0b1a2b;
}

#banner-carousel {
  display: flex;
  width: 100%; 
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.banner-image {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dots span {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
  background-color: #888;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dots span.active {
  background-color: #fff;
}


.login-btn {
  background-color: #66c0f4;
  color: white;
  border: none;
  padding: 6px 12px;
  margin: 0 15px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #2a475e;
  color: white;
  margin: 10% auto;
  padding: 20px;
  width: 300px;
  text-align: center;
  border-radius: 8px;
}

.modal-content input {
  width: 80%;
  padding: 8px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
}

.modal-content button {
  padding: 8px 20px;
  background-color: #66c0f4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

.search-input {
  padding: 4px;
  border-radius: 4px 0 0 4px;
  border: none;
  outline: none;
}

.search-btn {
  padding: 4px 8px;
  border-radius: 0 4px 4px 0;
  border: none;
  background-color: #66c0f4;
  color: white;
  cursor: pointer;
}

.screenshot-container {
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px 30px;
  background-color: #0b1a2b;
}

.screenshot-track {
  display: flex;
  gap: 20px;
}

.screenshot-slide {
  flex: 0 0 auto;
  width: 300px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
}

.screenshot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

button, .btn {
  padding: 10px 20px;
  background-color: #66c0f4;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

button:hover, .btn:hover {
  background-color: #417a9b;
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #171a21;
  color: #8f98a0;
  font-size: 12px;
}