/* Reset + Mobile-first */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #f4f4f4;
  color: #2d2d2d;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 10px 16px;
}

.logo {
  
  display: flex;
  align-items: center;
  height: 40px;
  
}


.logo-img {
  height: 100%;
  max-width: 120px;
  object-fit: contain;
}

.menu {
  font-size: 1.5rem;
}

.header-actions .btn {
  border: none;
  padding: 6px 10px;
  margin-left: 5px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* LOGIN button */
.header-actions .login {
  background: #af8942;
  color: white;
}

/* REGISTER button */
.header-actions .register {
  background: white;
  color: #af8942;
}
.register {
  background: white;
}

.nav-tabs {
  display: flex;
  overflow-x: auto;
  background: #eee;
  padding: 4px;
}

.tab {
  display: flex;
  flex-direction: column; /* Stack image and text vertically */
  align-items: center;     /* Center horizontally */
  justify-content: center;
  padding: 2px 6px;
  background: #ddd;
  margin-right: 5px;
  border-radius: 1px;
  font-weight: bold;
  font-size: 0.75rem; /* Slightly smaller for label */
  cursor: pointer;
  min-width: 70px;
}

.tab img {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  object-fit: contain;
}

.tab.active {
  background: #d4b563;
  
}



.game-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 5px;
  padding: 4px;
}

.game-card {
  background: white;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  font-size: 0.8rem;
}

.game-card img {
  width: 100%;
  height: auto;
}

.section-title {
  background: #b78830;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}

.new-launch {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding:6px;
}

.launch-card {
  min-width: 130px;
  background: #000;
  color: #d1b15e;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  font-size: 0.8rem;
}

.launch-card img {
  width: 100%;
  height: auto;
}



.match-section {
  margin-top: 0px;
  background: #fff;
  padding: 10px;
  
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d1b15e;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
}

.small-btn {
  font-size: 0.7rem;
  padding: 4px 8px;
  margin-left: 4px;
  border: 1px solid black;
  background: white;
  color: black;
  border-radius: 20px;
  cursor: pointer;
}

.match-row {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.match-info {
  font-size: 0.9rem;
}

.match-info .sub {
  display: block;
  font-size: 0.75rem;
  color: #777;
}

.live-time {
  display: flex;
  gap: 10px;
  font-size: 0.75rem;
  margin-top: 4px;
  align-items: center;
}

.live {
  color: green;
  font-weight: bold;
}

.time {
  background: #eee;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
}

.match-odds {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 8px;
}

.odds {
  padding: 6px;
  text-align: center;
  font-weight: bold;
  font-size: 0.85rem;
  border-radius: 4px;
}

.odds.blue {
  background-color: #c8eaff;
}

.odds.pink {
  background-color: #ffd1dc;
}
