:root {
  --font: {"Poppins", sans-serif;} ;
}

* {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

h1, h2, h3 {
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

p {
  margin-bottom: 12px;
}

.header {
  background: #a31a0a;
  padding: 10px 0;
}
.header p {
  color: #fff;
  margin: 0;
}

.menu {
  background-color: #b66056;
  padding: 15px 0;
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu ul li {
  display: inline-block;
  margin: 0 6px;
}
.menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 25px;
  border-radius: 15px;
}
.menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.menu ul li a.btn-register {
  background-color: #111;
  color: #fff;
  font-weight: 500;
  border-radius: 15px;
}
.menu ul li a.btn-register:hover {
  background-color: #211802;
  color: #fff;
}

.result-chart table thead tr th {
  padding: 10px;
  background: #f6e9ab;
  font-size: 16px;
  border: 1px solid #f6b1b1;
  text-transform: uppercase;
  font-weight: 500;
}
.result-chart table thead tr th.first {
  background: #efce66;
  font-size: 16px;
}
.result-chart table tbody tr td {
  padding: 15px 10px;
  background: #fdfaec;
  font-size: 16px;
  border: 1px solid #ffe9a6;
}
.result-chart table tbody tr td.first {
  background: #f6eed8;
  font-size: 16px;
  font-weight: 500;
}

.notice-home {
  margin-top: 20px;
  font-size: 14px;
}
.notice-home .content {
  padding: 15px;
  background: #fffbea;
  border-radius: 4px;
  border: 1px solid #ffe8a3;
}

.footer {
  padding: 15px 0;
  background: #a31a0a;
  font-size: 13px;
  text-align: center;
}
.footer p {
  color: #fff;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.footer ul li {
  display: inline-block;
  margin: 0 5px;
}
.footer ul li a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  margin-bottom: 5px;
}

.heading-home {
  padding: 25px 0;
}
.heading-home p {
  text-align: justify;
}

.game-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.game-list li {
  flex: 1 1 calc(33% - 8px);
}
@media only screen and (max-width: 800px) {
  .game-list li {
    flex: 1 1 100%;
  }
}
.game-list li a {
  background-color: white;
  border: 1px solid #ddd;
  padding: 8px;
  display: block;
  text-align: center;
  color: #333;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.2s ease;
  text-decoration: none;
}
@media only screen and (max-width: 800px) {
  .game-list li a {
    background-color: #ffe9a6;
  }
}
.game-list li a:hover {
  background-color: #f8f8f8;
  border-color: #bbb;
  color: #111;
}

.cta-box {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: 25px 0;
}
.cta-box p {
  font-size: 1rem;
  margin-bottom: 15px;
}
.cta-box .cta-btn {
  background-color: #ffb703;
  color: #222;
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s;
}
.cta-box .cta-btn:hover {
  background-color: #ffa500;
}

/*# sourceMappingURL=home-style.css.map */
