* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #121212;
  color: #fff;
  padding-bottom: 70px;
}

/* HEADER */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: linear-gradient(#222, #000);
  position: relative;
}

.menu-btn {
  position: absolute;
  left: 15px;
  background: #caa200;
  color: #000;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.logo span {
  color: gold;
}

/* CATEGORY */
.category {
  display: flex;
  overflow-x: auto;
  background: #1b1b1b;
}

.category a {
  padding: 10px 14px;
  font-size: 14px;
  white-space: nowrap;
  color: #aaa;
}

.category a.active {
  color: gold;
  border-bottom: 2px solid gold;
}

/* BANNER */
.banner {
  padding: 12px;
}

.banner-box {
  background: linear-gradient(135deg, #2c2c2c, #000);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.banner-box h2 {
  color: gold;
  margin-bottom: 6px;
}

/* AUTH */
.auth-btn {
  display: flex;
  gap: 10px;
  padding: 12px;
}

.auth-btn button {
  flex: 1;
  padding: 12px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
}

.login {
  background: #caa200;
  color: #000;
}

.register {
  background: #3a2b7a;
  color: #fff;
}

/* GAME */
.section {
  padding: 12px;
}

.section h3 {
  margin-bottom: 10px;
}

.game-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.game-card {
  min-width: 140px;
  background: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.game-card img {
  width: 100%;
}

.game-card p {
  padding: 6px;
  font-size: 13px;
  text-align: center;
}

.play {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0,0,0,.7);
  padding: 4px 6px;
  border-radius: 50%;
  font-size: 12px;
}

/* BOTTOM NAV */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(#1a1a2e, #0b0b18);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav div {
  font-size: 12px;
  text-align: center;
  color: #aaa;
}

.bottom-nav span {
  display: block;
}

.bottom-nav .active {
  color: #fff;
}
