html, body {
  margin: 0 auto;
  padding: 0;
}

h1 {
  font-size: 1.8em;
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.bold {
  font-weight: bold;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.title {
  text-transform: capitalize;
}

.col_0 {
  float: left;
  width: 0%;
}

.col_0_5 {
  float: left;
  width: 5%;
}

.col_1 {
  float: left;
  width: 10%;
}

.col_1_5 {
  float: left;
  width: 15%;
}

.col_2 {
  float: left;
  width: 20%;
}

.col_2_5 {
  float: left;
  width: 25%;
}

.col_3 {
  float: left;
  width: 30%;
}

.col_3_5 {
  float: left;
  width: 35%;
}

.col_4 {
  float: left;
  width: 40%;
}

.col_4_5 {
  float: left;
  width: 45%;
}

.col_5 {
  float: left;
  width: 50%;
}

.col_5_5 {
  float: left;
  width: 55%;
}

.col_6 {
  float: left;
  width: 60%;
}

.col_6_5 {
  float: left;
  width: 65%;
}

.col_7 {
  float: left;
  width: 70%;
}

.col_7_5 {
  float: left;
  width: 75%;
}

.col_8 {
  float: left;
  width: 80%;
}

.col_8_5 {
  float: left;
  width: 85%;
}

.col_9 {
  float: left;
  width: 90%;
}

.col_9_5 {
  float: left;
  width: 95%;
}

.full_row {
  width: 100%;
  margin-bottom: 10px;
}
.full_row:after {
  display: block;
  content: "";
  clear: both;
}

body {
  background-color: #000;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

* {
  font-family: "Montserrat", sans-serif;
}

#main-header {
  background-color: #000;
  position: relative;
  z-index: 1000;
}
#main-header .header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}
@media (max-width: 768px) {
  #main-header .header-container {
    padding: 10px 15px;
    justify-content: center;
  }
}
#main-header .header-logo img {
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  #main-header .header-logo img {
    height: 50px;
  }
}
@media (max-width: 768px) {
  #main-header .desktop-nav {
    display: none;
  }
}
#main-header .desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}
#main-header .desktop-nav .nav-link {
  color: #707070;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
#main-header .desktop-nav .nav-link:hover {
  color: #B79C71;
  text-decoration: none;
}
#main-header .desktop-nav .nav-link.active {
  color: #B79C71;
  text-decoration: none;
}
#main-header .desktop-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #B79C71;
}
#main-header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #main-header .mobile-menu-toggle {
    display: flex;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
#main-header .mobile-menu-toggle .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}
#main-header .mobile-menu-toggle:hover .hamburger-line {
  background-color: #B79C71;
}
#main-header .mobile-menu-toggle.active .hamburger-line {
  background-color: #fff;
}
#main-header .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
#main-header .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
#main-header .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 90%;
  max-width: 350px;
  height: calc(100vh - 80px);
  background-color: #1A1A1A;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  border-radius: 0 0 10px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}
@media (max-width: 768px) {
  .mobile-nav-overlay {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-nav-overlay {
    display: none;
  }
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-nav-overlay .mobile-nav {
  padding: 20px;
  height: 100%;
}
.mobile-nav-overlay .mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-overlay .mobile-nav li {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}
.mobile-nav-overlay .mobile-nav li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.mobile-nav-overlay .mobile-nav .mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}
.mobile-nav-overlay .mobile-nav .mobile-nav-link:hover {
  color: #B79C71;
  text-decoration: none;
}
.mobile-nav-overlay .mobile-nav .mobile-nav-link.active {
  color: #B79C71;
  text-decoration: none;
}

body.menu-open {
  overflow: hidden;
}

header .time {
  font-size: 12px;
}

#searchBarDiv .input-group-text {
  background-color: #d32027;
  color: #000;
  border: 0px;
}

#searchBarDiv select {
  background-color: #f4f4f4;
}

#selectdatesubmit {
  cursor: pointer;
}

.countdownholder {
  background-color: #414141;
  color: #FFF;
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 9 / 16 = 0.5625 */
}
.countdownholder > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.countdownholder .title {
  font-size: 20px;
}

.countdownholder #countdown {
  font-size: 40px;
  font-weight: bold;
  margin-top: 30px;
  gap: 10px;
}

.countdownholder .small {
  font-size: 12px;
  font-weight: normal;
}

.spacing {
  height: 80px;
}

.topBanner {
  margin-bottom: 15px;
}

.content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}
@media (max-width: 768px) {
  .content {
    padding: 15px;
  }
}

#liveframe {
  width: 100%;
  background: #000;
  text-align: center;
}
#liveframe object {
  width: 100%;
  width: 600px;
  height: 300px;
}

#logoBar {
  padding: 20px 0;
}
#logoBar:after {
  content: "";
  clear: both;
  display: block;
}
@media (max-width: 970px) {
  #logoBar {
    padding: 10px;
  }
  #logoBar #logoDiv {
    float: none;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 10px;
  }
}

.bannerImg {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 970px) {
  .bannerImg {
    display: none;
  }
}

/*
.footer_height {
	height: 120px;

	@media screen and (max-width: 768px) {
		height: 190px;
	}
}*/
#footer {
  background-color: #000;
  color: #FFF;
}
#footer #footerDiv {
  padding: 20px 0;
}
#footer #footerDiv .row {
  align-items: center;
  margin: 0;
}
#footer #footerDiv .official-partners-section {
  padding: 0 15px;
}
@media (min-width: 768px) {
  #footer #footerDiv .official-partners-section .official-partners {
    text-align: left;
  }
}
@media (max-width: 767px) {
  #footer #footerDiv .official-partners-section .official-partners {
    text-align: center;
    margin-bottom: 20px;
  }
}
#footer #footerDiv .official-partners-section .official-partners .official-title {
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 400;
}
#footer #footerDiv .official-partners-section .official-partners .partner-logos {
  display: flex;
  gap: 15px;
}
@media (min-width: 768px) {
  #footer #footerDiv .official-partners-section .official-partners .partner-logos {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  #footer #footerDiv .official-partners-section .official-partners .partner-logos {
    justify-content: center;
    flex-wrap: wrap;
  }
}
#footer #footerDiv .official-partners-section .official-partners .partner-logos .partner-logo {
  height: 40px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}
#footer #footerDiv .footer-links-section {
  padding: 0 15px;
}
@media (min-width: 768px) {
  #footer #footerDiv .footer-links-section {
    text-align: right;
  }
}
@media (max-width: 767px) {
  #footer #footerDiv .footer-links-section {
    text-align: center;
  }
}
#footer #footerDiv .footer-links-section .footer-links {
  display: flex;
  gap: 35px;
  justify-content: flex-end;
  margin-bottom: 10px;
}
#footer #footerDiv .footer-links-section .footer-links .footer-link {
  color: #707070;
  font-size: 14px;
  margin: 0;
}
#footer #footerDiv .footer-links-section .footer-links .footer-link:hover {
  color: #FFF;
  text-decoration: underline;
}
@media (max-width: 767px) {
  #footer #footerDiv .footer-links-section .footer-links {
    justify-content: center;
  }
}
#footer #footerDiv .footer-links-section .copyright {
  color: #888;
  font-size: 12px;
  line-height: 1.4;
}
#footer #footerDiv .footer-links-section .copyright strong {
  color: #FFF;
}

#montlyBar {
  width: 100%;
  margin: 10px 0;
}
#montlyBar .dropdown-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  #montlyBar .dropdown-container {
    padding: 0 15px;
  }
}
#montlyBar #dropdownMenuButton {
  background: #3f0109;
  color: #fff;
  border: 0px;
  font-weight: bold;
  font-size: 0.9em;
  padding: 12px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
#montlyBar #dropdownMenuButton:hover {
  background: rgb(12.796875, 0.203125, 1.828125);
  transform: translateY(-1px);
}
#montlyBar .dropdown-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  background: #ededed;
  color: #000;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#montlyBar .dropdown-item {
  border-bottom: 1px solid #000;
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}
#montlyBar .dropdown-item:hover {
  background-color: #B79C71;
  color: #000;
}
#montlyBar:after {
  content: "";
  clear: both;
  display: block;
}

.resultBox {
  margin-top: 10px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  overflow: hidden;
}
.resultBox .resultHeader {
  background-color: #B79C71;
  color: #000;
  text-align: center;
  padding: 15px;
  font: normal normal bold 18px/22px Montserrat;
}
.resultBox .resultRow {
  width: 100%;
  padding: 20px;
  color: #fff;
}
.resultBox .resultRow .right_line {
  border-right: 1px solid rgba(183, 156, 113, 0.3);
  padding-right: 15px;
  margin-right: 15px;
}
.resultBox .resultRow .comingSoon {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font: normal normal 400 16px/22px Montserrat;
  padding: 40px 20px;
}
.resultBox .resultRow .innerBox {
  background: rgba(183, 156, 113, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}
.resultBox .resultRow .innerBox.f_left {
  margin-right: 4px;
}
.resultBox .resultRow .innerBox.f_right {
  margin-left: 4px;
}
.resultBox .resultRow .innerBox .innerTitle {
  background-color: #07966F;
  color: #fff;
  width: 100%;
  font-weight: bold;
  text-align: center;
}
.resultBox .resultRow .innerBox .innerTitle > div {
  padding: 8px;
  justify-content: center;
}
@media (max-width: 768px) {
  .resultBox .resultRow .innerBox .innerTitle > div:last-child {
    font-size: 0.7em;
  }
}
.resultBox .resultRow .innerBox .innerResultTitle {
  width: 100%;
  font-size: 0.8em;
  color: #fff;
  background-color: #07966F;
  text-align: center;
}
.resultBox .resultRow .innerBox .innerResultTitle div {
  text-align: center;
  width: 100%;
  padding: 5px;
}
.resultBox .resultRow .innerBox .bottomPrice {
  background-color: #FFF;
  color: #000;
}
.resultBox .resultRow .innerBox .bottomPrice div {
  width: 100%;
  text-align: center;
}
.resultBox .resultRow .innerBox .topPrice {
  background-color: #FFF;
  width: 100%;
  display: flex;
}
.resultBox .resultRow .innerBox .topPrice table {
  width: 100%;
  border: 1px solid #707070;
}
.resultBox .resultRow .innerBox .topPrice table tr {
  background-color: #FFF;
}
.resultBox .resultRow .innerBox .topPrice table tr:nth-child(odd) {
  background-color: #F5F5F5;
}
.resultBox .resultRow .innerBox .topPrice table tr td {
  border-bottom: 1px solid #707070;
  width: 50%;
  text-align: center;
  padding: 8px;
  font-weight: bold;
}
.resultBox .resultRow .innerBox .topPrice table tr:last-child td {
  border-bottom: 0px;
}
.resultBox .resultRow .innerBox .topPrice .topPriceRow {
  border-right: 1px solid #FFF;
  text-align: center;
  width: 100%;
}
.resultBox .resultRow .innerBox .topPrice .topPriceRow:last-child {
  border-right: 0;
}
.resultBox .resultRow .innerBox .topPrice .topPriceRow .topPriceTitle {
  font-weight: bold;
  font-size: 0.9em;
  color: #fed631;
  text-align: center;
  padding: 5px 10px;
  background-color: #484848;
  color: #FFF;
}
.resultBox .resultRow .innerBox .topPrice .topPriceRow .topPriceResults {
  text-align: center;
  color: #000;
  letter-spacing: 0.5em;
  font-weight: bold;
  font-size: 1.3em;
  padding: 10px;
}
.resultBox .resultRow .innerBox .topPrice .topPriceRow:after {
  content: "";
  clear: both;
  display: block;
}
.resultBox .resultRow .innerBox .topPrice:after {
  content: "";
  clear: both;
  display: block;
}
.resultBox .resultRow .innerBox .prizeTable {
  width: 100%;
  text-align: center;
  color: #000;
  background-color: #FFF;
  border: 1px solid #707070;
}
.resultBox .resultRow .innerBox .prizeTable tr:nth-child(odd) {
  background-color: #F5F5F5;
}
.resultBox .resultRow .innerBox .prizeTable tr:last-child td {
  border-bottom: 0px;
}
.resultBox .resultRow .innerBox .prizeTable td {
  border-bottom: 1px solid #707070;
  padding: 5px;
  color: #000;
  letter-spacing: 0.2em;
}
.resultBox .resultRow .innerBox .prizeTable td:last-child {
  border-left: 1px solid #707070;
}
.resultBox .resultRow .innerBox .prizeTable td:first-child {
  border-left: none;
}
.resultBox .resultRow:after {
  content: "";
  clear: both;
  display: block;
}
.resultBox .resultRow .comingSoon {
  color: #000;
}
@media (max-width: 970px) {
  .resultBox .resultRow {
    display: block;
  }
  .resultBox .resultRow .f_left, .resultBox .resultRow .f_right, .resultBox .resultRow .col_5 {
    float: none;
    width: 100%;
  }
  .resultBox .resultRow .right_line {
    border-right: 0 solid #000;
  }
}

.navigation {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.navigation div {
  padding: 5px 15px;
  font-weight: bold;
}
.navigation div a {
  color: #041e49;
  text-decoration: none;
}
.navigation i {
  color: #000;
}

#monthTable {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  overflow: hidden;
}
#monthTable thead {
  background-color: #B79C71;
  color: #000;
  text-transform: uppercase;
}
#monthTable thead th {
  padding: 15px 10px;
  text-align: center;
  font: normal normal bold 16px/20px Montserrat;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
#monthTable thead th:last-child {
  border-right: none;
}
#monthTable tbody {
  background-color: transparent;
  color: #fff;
}
#monthTable tbody td {
  padding: 12px 10px;
  font-weight: bold;
  font-size: 0.9em;
  border-bottom: 1px solid rgba(183, 156, 113, 0.2);
  border-right: 1px solid rgba(183, 156, 113, 0.1);
  transition: background-color 0.3s ease;
}
#monthTable tbody td:last-child {
  border-right: none;
}
#monthTable tbody td.dDate {
  color: #B79C71;
  font: normal normal bold 14px/18px Montserrat;
}
#monthTable tbody td.dResult {
  color: #fff;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  font: normal normal bold 14px/18px Montserrat;
  font-family: "Courier New", monospace;
}
#monthTable tbody tr:hover {
  background-color: rgba(183, 156, 113, 0.1);
}
#monthTable tbody tr:last-child td {
  border-bottom: none;
}
#monthTable tbody .moreinfo {
  background: #B79C71;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font: normal normal 600 12px/15px Montserrat;
  display: inline-block;
  transition: all 0.3s ease;
  border: 0;
  cursor: pointer;
}
#monthTable tbody .moreinfo:hover {
  background: #a08960;
  transform: translateY(-1px);
  text-decoration: none;
  color: #000;
}
@media (max-width: 768px) {
  #monthTable thead th,
  #monthTable tbody td {
    padding: 8px 6px;
    font-size: 12px;
  }
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .page-container {
    padding: 15px;
  }
}

.section-container {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section-container {
    margin-bottom: 30px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-header .section-title {
  font: normal normal 600 32px/39px Montserrat;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 24px;
    line-height: 29px;
  }
}
.section-header .section-subtitle {
  font: normal normal 400 18px/26px Montserrat;
  color: #B79C71;
}
@media (max-width: 768px) {
  .section-header .section-subtitle {
    font-size: 16px;
    line-height: 22px;
  }
}

.standard-table {
  width: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
.standard-table .table-header {
  background: #B79C71;
  color: #000;
  font: normal normal bold 16px/20px Montserrat;
  text-transform: uppercase;
}
.standard-table .table-header .header-row {
  display: flex;
  padding: 0;
}
.standard-table .table-header .header-row .header-cell {
  padding: 15px;
  text-align: center;
  flex: 1;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.standard-table .table-header .header-row .header-cell:last-child {
  border-right: none;
}
.standard-table .table-body .table-row {
  display: flex;
  border-bottom: 1px solid rgba(183, 156, 113, 0.2);
  color: #fff;
  transition: background-color 0.3s ease;
}
.standard-table .table-body .table-row:last-child {
  border-bottom: none;
}
.standard-table .table-body .table-row:hover {
  background-color: rgba(183, 156, 113, 0.1);
}
.standard-table .table-body .table-row .table-cell {
  padding: 15px;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal normal 400 14px/20px Montserrat;
}
.standard-table .table-body .table-row .table-cell.text-left {
  justify-content: flex-start;
}
.standard-table .table-body .table-row .table-cell.text-right {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .standard-table .table-header .header-row,
  .standard-table .table-body .table-row {
    flex-direction: column;
  }
  .standard-table .header-cell,
  .standard-table .table-cell {
    border-right: none !important;
    border-bottom: 1px solid rgba(183, 156, 113, 0.2);
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .standard-table .header-cell:last-child,
  .standard-table .table-cell:last-child {
    border-bottom: none;
  }
}

.standard-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 20px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .standard-card {
    padding: 15px;
    margin-bottom: 15px;
  }
}
.standard-card .card-header {
  margin-bottom: 20px;
}
.standard-card .card-header .card-title {
  font: normal normal bold 20px/24px Montserrat;
  color: #B79C71;
  margin-bottom: 5px;
}
.standard-card .card-header .card-subtitle {
  font: normal normal 400 14px/18px Montserrat;
  color: rgba(255, 255, 255, 0.7);
}
.standard-card .card-content {
  font: normal normal 400 16px/22px Montserrat;
}
.standard-card .card-content p {
  margin-bottom: 15px;
}
.standard-card .card-content p:last-child {
  margin-bottom: 0;
}
.standard-card .card-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(183, 156, 113, 0.2);
  text-align: center;
}

.grid-container {
  display: grid;
  gap: 20px;
}
.grid-container.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid-container.grid-2 {
    grid-template-columns: 1fr;
  }
}
.grid-container.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .grid-container.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-container.grid-3 {
    grid-template-columns: 1fr;
  }
}
.grid-container.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .grid-container.grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .grid-container.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-container.grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .grid-container {
    gap: 15px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font: normal normal 600 16px/19px Montserrat;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}
.btn.btn-primary {
  background: #B79C71;
  color: #000;
  border-color: #B79C71;
}
.btn.btn-primary:hover {
  background: #a08960;
  border-color: #a08960;
  transform: translateY(-2px);
  text-decoration: none;
  color: #000;
}
.btn.btn-secondary {
  background: transparent;
  color: #B79C71;
  border-color: #B79C71;
}
.btn.btn-secondary:hover {
  background: #B79C71;
  color: #000;
  transform: translateY(-2px);
  text-decoration: none;
}
.btn.btn-small {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 17px;
}
.btn.btn-large {
  padding: 16px 32px;
  font-size: 18px;
  line-height: 22px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:disabled:hover {
  transform: none;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #B79C71;
}

.text-secondary {
  color: rgba(255, 255, 255, 0.7);
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.text-small {
  font: normal normal 400 12px/16px Montserrat;
}

.text-body {
  font: normal normal 400 16px/22px Montserrat;
}

.text-large {
  font: normal normal 400 18px/26px Montserrat;
}

.text-bold {
  font-weight: 600;
}

.text-uppercase {
  text-transform: uppercase;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-4 {
  margin-top: 40px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 10px !important;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.pb-3 {
  padding-bottom: 30px !important;
}

.pb-4 {
  padding-bottom: 40px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 10px !important;
}

.pt-2 {
  padding-top: 20px !important;
}

.pt-3 {
  padding-top: 30px !important;
}

.pt-4 {
  padding-top: 40px !important;
}

.result-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #B79C71;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: normal normal bold 16px/20px Montserrat;
  margin: 0 2px;
}
.result-circle.empty {
  background: rgba(183, 156, 113, 0.2);
  color: transparent;
}
.result-circle.large {
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 24px;
}
.result-circle.small {
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 18px;
}

.result-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.draw-schedule-section {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 20px;
  border-radius: 15px;
}
.draw-schedule-section .section-title {
  font: normal normal 600 28px/34px Montserrat;
  color: #fff;
  margin-bottom: 20px;
}
.draw-schedule-section .schedule-info .schedule-text {
  font: normal normal 400 18px/26px Montserrat;
  color: #fff;
  margin-bottom: 15px;
}
.draw-schedule-section .schedule-info .schedule-text:last-child {
  margin-bottom: 0;
}
.draw-schedule-section .schedule-info .schedule-text .highlight {
  color: #B79C71;
  font-weight: 600;
}
@media (max-width: 768px) {
  .draw-schedule-section {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  .draw-schedule-section .section-title {
    font-size: 22px;
    line-height: 28px;
  }
  .draw-schedule-section .schedule-text {
    font-size: 16px;
    line-height: 22px;
  }
}

.lottery-results {
  padding: 20px 0 !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-wrap: wrap;
}
.lottery-results .result-box {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  min-width: 490px;
}
@media (max-width: 768px) {
  .lottery-results .result-box {
    min-width: auto;
  }
}
.lottery-results .secondary-results {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .lottery-results .secondary-results {
    flex-direction: column;
  }
}
.lottery-results .secondary-results .result-box {
  flex: 1;
}
.lottery-results .result-box .result-header {
  text-align: center;
  margin-bottom: 20px;
}
.lottery-results .result-box .result-header.drawing {
  background: #B79C71;
  margin: -20px -20px 20px -20px;
  padding: 15px 20px;
  border-radius: 15px 15px 0 0;
}
.lottery-results .result-box .result-header.drawing h2 {
  margin: 0;
  color: #000000;
  font: normal normal bold 24px/29px Montserrat;
}
.lottery-results .result-box .result-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #444;
}
.lottery-results .result-box .result-info.completed {
  background: #B79C71;
  margin: -20px -20px 20px -20px;
  padding: 15px 20px;
  border-radius: 15px 15px 0 0;
  border-bottom: none;
}
.lottery-results .result-box .result-info.completed .date, .lottery-results .result-box .result-info.completed .period {
  font: normal normal bold 21px/25px Montserrat;
  color: #000;
}
@media (max-width: 768px) {
  .lottery-results .result-box .result-info.completed .date, .lottery-results .result-box .result-info.completed .period {
    font: normal normal bold 18px/22px Montserrat;
  }
}
.lottery-results .result-box .result-info .date {
  font-size: 16px;
  font-weight: 500;
}
.lottery-results .result-box .result-info .period {
  font-size: 14px;
}
.lottery-results .result-box .prizes .prize-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}
@media (max-width: 768px) {
  .lottery-results .result-box .prizes .prize-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}
.lottery-results .result-box .prizes .prize-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.lottery-results .result-box .prizes .prize-row .prize-label {
  font: normal normal bold 21px/25px Montserrat;
  color: #fff;
}
@media (max-width: 768px) {
  .lottery-results .result-box .prizes .prize-row .prize-label {
    font: normal normal bold 18px/22px Montserrat;
    margin-bottom: 0;
  }
}
.lottery-results .result-box .prizes .prize-row .prize-numbers {
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .lottery-results .result-box .prizes .prize-row .prize-numbers {
    justify-content: center;
  }
}
.lottery-results .result-box .prizes .prize-row .prize-numbers .result-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #B79C71;
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal normal bold 21px/25px Montserrat;
  color: #000;
}
.lottery-results .result-box .prizes .prize-row .prize-numbers .result-circle.empty {
  color: transparent;
}
@media (max-width: 768px) {
  .lottery-results .result-box .prizes .prize-row .prize-numbers .result-circle {
    width: 50px;
    height: 50px;
    font: normal normal bold 18px/22px Montserrat;
  }
}
.lottery-results .result-box.main-result {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lottery-results .result-box.main-result {
    margin-bottom: 0px;
  }
}
.lottery-results .result-box.main-result .prizes .prize-row .prize-label {
  font: normal normal bold 37px/45px Montserrat;
}
@media (max-width: 768px) {
  .lottery-results .result-box.main-result .prizes .prize-row .prize-label {
    font: normal normal bold 18px/22px Montserrat;
  }
}
.lottery-results .result-box.main-result .prizes .prize-row .prize-numbers {
  gap: 40px;
}
@media (max-width: 768px) {
  .lottery-results .result-box.main-result .prizes .prize-row .prize-numbers {
    gap: 8px;
    justify-content: center;
  }
}
.lottery-results .result-box.main-result .prizes .prize-row .prize-numbers .result-circle {
  font: normal normal bold 37px/45px Montserrat;
}
@media (max-width: 768px) {
  .lottery-results .result-box.main-result .prizes .prize-row .prize-numbers .result-circle {
    font: normal normal bold 18px/22px Montserrat;
  }
}

.result-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .result-navigation {
    flex-direction: column;
    gap: 15px;
    max-width: none;
  }
}
.result-navigation .nav-buttons {
  display: flex;
  gap: 20px;
}
.result-navigation .nav-buttons a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .result-navigation .nav-buttons {
    order: 1;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.result-navigation .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #B79C71;
  color: #B79C71;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0px;
  text-decoration: none;
}
.result-navigation .nav-btn:hover {
  border-color: #a08960;
  transform: scale(1.1);
}
.result-navigation .nav-btn:active {
  transform: scale(0.95);
}
@media (max-width: 768px) {
  .result-navigation .view-all-container {
    order: 2;
  }
}
.result-navigation .view-all-btn {
  background: #B79C71;
  color: #000;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #B79C71;
  font: normal normal 600 16px/19px Montserrat;
}
.result-navigation .view-all-btn:hover {
  background: #a08960;
  color: #000;
  text-decoration: none;
  border-color: #a08960;
  transform: translateY(-2px);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: center;
}
@media (max-width: 768px) {
  .results-header {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}
.results-header h1 {
  color: #FFF;
  font: normal normal bold 32px/39px Montserrat;
}
@media (max-width: 768px) {
  .results-header h1 {
    font-size: 24px;
    line-height: 29px;
    width: 100%;
  }
}
.results-header .search-controls {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .results-header .search-controls {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 15px auto 0;
    align-items: center !important;
    text-align: center;
  }
}
.results-header .search-controls .search-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.results-header .search-controls .search-group label {
  color: white;
  font: normal normal 600 14px/17px Montserrat;
}
.results-header .search-controls .search-group .search-input {
  padding: 8px 12px;
  border: 1px solid #B79C71;
  border-radius: 5px;
  background: #FFF;
  color: #000;
  font-size: 14px;
  width: 150px;
}
.results-header .search-controls .search-group .search-input:focus {
  outline: none;
  border-color: #a08960;
  box-shadow: 0 0 5px rgba(183, 156, 113, 0.3);
}
.results-header .search-controls .search-group .search-btn {
  background: #B79C71;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font: normal normal 600 14px/17px Montserrat;
  transition: all 0.3s ease;
}
.results-header .search-controls .search-group .search-btn:hover {
  background: #a08960;
  transform: translateY(-1px);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.results-grid .result-box.empty-result {
  opacity: 0.5;
}
.results-grid .result-box.empty-result .result-date-info .date {
  color: #666;
}
.results-grid .result-box .result-header .result-date-info {
  background: #B79C71;
  margin: -20px -20px 20px -20px;
  padding: 15px 20px;
  border-radius: 15px 15px 0 0;
  text-align: center;
}
.results-grid .result-box .result-header .result-date-info .date {
  display: block;
  color: #000;
  font: normal normal bold 16px/19px Montserrat;
  margin-bottom: 5px;
}
.results-grid .result-box .result-header .result-date-info .period {
  display: block;
  color: #000;
  font: normal normal 600 14px/17px Montserrat;
}

.pagination-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.pagination-navigation .pagination-numbers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination-navigation .pagination-numbers .page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #B79C71;
  border-radius: 8px;
  color: #B79C71;
  text-decoration: none;
  font: normal normal 600 14px/17px Montserrat;
  transition: all 0.3s ease;
}
.pagination-navigation .pagination-numbers .page-number:hover {
  background: #B79C71;
  color: #000;
  transform: translateY(-1px);
}
.pagination-navigation .pagination-numbers .page-number.active {
  background: #B79C71;
  color: #000;
}

.results-page-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 30px;
}
.results-page-navigation .nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.results-page-navigation .nav-buttons a {
  text-decoration: none;
}
.results-page-navigation .nav-buttons .pagination-numbers {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 15px;
}
.results-page-navigation .nav-buttons .pagination-numbers .page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #B79C71;
  border-radius: 8px;
  color: #B79C71;
  text-decoration: none;
  font: normal normal 600 14px/17px Montserrat;
  transition: all 0.3s ease;
}
.results-page-navigation .nav-buttons .pagination-numbers .page-number:hover {
  background: #B79C71;
  color: #000;
  transform: translateY(-1px);
}
.results-page-navigation .nav-buttons .pagination-numbers .page-number.active {
  background: #B79C71;
  color: #000;
}
.results-page-navigation .nav-buttons .pagination-numbers .page-ellipsis {
  color: #B79C71;
  font: normal normal 600 14px/17px Montserrat;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.results-page-navigation .nav-buttons .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #B79C71;
  color: #B79C71;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0px;
  text-decoration: none;
}
.results-page-navigation .nav-buttons .nav-btn:hover {
  border-color: #a08960;
  transform: scale(1.1);
}
.results-page-navigation .nav-buttons .nav-btn:active {
  transform: scale(0.95);
}

.how-to-play-container, .lottery-results {
  color: #fff;
  margin: 0 auto;
  padding: 20px 0 !important;
}
.how-to-play-container .how-to-play-header, .lottery-results .how-to-play-header {
  margin-bottom: 40px;
}
.how-to-play-container .how-to-play-header h1, .lottery-results .how-to-play-header h1 {
  font: normal normal bold 32px/39px Montserrat;
  color: #fff;
  margin-bottom: 20px;
}
.how-to-play-container .how-to-play-header .intro-text, .lottery-results .how-to-play-header .intro-text {
  font: normal normal normal 16px/24px Montserrat;
  color: #fff;
  margin-bottom: 15px;
}
.how-to-play-container .how-to-play-header .prize-categories, .lottery-results .how-to-play-header .prize-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.how-to-play-container .how-to-play-header .prize-categories .prize-category, .lottery-results .how-to-play-header .prize-categories .prize-category {
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  font: normal normal 600 14px/17px Montserrat;
}
.how-to-play-container .section-title, .lottery-results .section-title {
  font: normal normal 600 25px/30px Montserrat;
  color: #fff;
  text-align: center;
}
.how-to-play-container .schedule-info, .lottery-results .schedule-info {
  text-align: center;
}
.how-to-play-container .schedule-info .schedule-text, .lottery-results .schedule-info .schedule-text {
  font: normal normal normal 18px/26px Montserrat;
  color: #fff;
  margin-bottom: 15px;
}
.how-to-play-container .schedule-info .schedule-text .highlight, .lottery-results .schedule-info .schedule-text .highlight {
  color: #B79C71;
  font-weight: 600;
}
.how-to-play-container .prize-title, .lottery-results .prize-title {
  font: normal normal bold 35px/43px Montserrat;
  color: #B79C71;
  text-align: center;
  margin-bottom: 30px;
}
.how-to-play-container .games-table-container, .lottery-results .games-table-container {
  margin-bottom: 50px;
  overflow-x: auto;
}
.how-to-play-container .games-table, .lottery-results .games-table {
  width: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 8px;
  overflow: hidden;
}
.how-to-play-container .games-table .table-header, .lottery-results .games-table .table-header {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  background: #B79C71;
  color: #000;
  font: normal normal bold 16px/20px Montserrat;
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .table-header, .lottery-results .games-table .table-header {
    grid-template-columns: 2fr 3fr;
  }
}
.how-to-play-container .games-table .table-header .header-cell, .lottery-results .games-table .table-header .header-cell {
  padding: 15px;
  text-align: center;
}
.how-to-play-container .games-table .table-header .header-cell:last-child, .lottery-results .games-table .table-header .header-cell:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .table-header .header-cell.digit-col, .lottery-results .games-table .table-header .header-cell.digit-col {
    display: none;
  }
}
.how-to-play-container .games-table .table-row, .lottery-results .games-table .table-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  border-bottom: 1px solid rgba(183, 156, 113, 0.2);
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .table-row, .lottery-results .games-table .table-row {
    grid-template-columns: 2fr 3fr;
  }
}
.how-to-play-container .games-table .table-row:last-child, .lottery-results .games-table .table-row:last-child {
  border-bottom: none;
}
.how-to-play-container .games-table .table-row > div, .lottery-results .games-table .table-row > div {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .table-row > div, .lottery-results .games-table .table-row > div {
    padding: 8px;
  }
}
.how-to-play-container .games-table .table-row > div:last-child, .lottery-results .games-table .table-row > div:last-child {
  border-right: none;
}
.how-to-play-container .games-table .game-info, .lottery-results .games-table .game-info {
  flex-direction: column;
  align-items: flex-start !important;
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .game-info, .lottery-results .games-table .game-info {
    align-items: start !important;
  }
}
.how-to-play-container .games-table .game-info .game-name, .lottery-results .games-table .game-info .game-name {
  font: normal normal 600 20px/24px Montserrat;
  color: #fff;
  margin-bottom: 5px;
  text-align: left !important;
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .game-info .game-name, .lottery-results .games-table .game-info .game-name {
    font: normal normal bold 15px/22px Montserrat;
  }
}
.how-to-play-container .games-table .game-info .game-time, .lottery-results .games-table .game-info .game-time {
  font: normal normal normal 14px/17px Montserrat;
  color: rgba(255, 255, 255, 0.7);
}
.how-to-play-container .games-table .prize-numbers, .lottery-results .games-table .prize-numbers {
  gap: 8px;
}
.how-to-play-container .games-table .prize-numbers .digit, .lottery-results .games-table .prize-numbers .digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.how-to-play-container .games-table .prize-numbers .digit:first-child, .lottery-results .games-table .prize-numbers .digit:first-child {
  color: #C9A56B;
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .first-digit, .lottery-results .games-table .first-digit {
    display: none !important;
  }
}
.how-to-play-container .games-table .first-digit .digit, .lottery-results .games-table .first-digit .digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #C9A56B;
  font: normal normal bold 22px/27px Montserrat;
}
.how-to-play-container .games-table .final-game-info .final-game-name, .lottery-results .games-table .final-game-info .final-game-name {
  color: #B79C71 !important;
  font: normal normal bold 23px/28px Montserrat;
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .final-game-info .final-game-name, .lottery-results .games-table .final-game-info .final-game-name {
    font: normal normal bold 15px/22px Montserrat;
  }
}
.how-to-play-container .games-table .final-prize-numbers, .lottery-results .games-table .final-prize-numbers {
  gap: 8px !important;
}
.how-to-play-container .games-table .final-prize-numbers .result-circle, .lottery-results .games-table .final-prize-numbers .result-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #B79C71;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal normal bold 18px/22px Montserrat;
  box-shadow: 0 4px 15px rgba(183, 156, 113, 0.3);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .how-to-play-container .games-table .final-prize-numbers .result-circle, .lottery-results .games-table .final-prize-numbers .result-circle {
    width: 35px;
    height: 35px;
    font: normal normal bold 16px/20px Montserrat;
  }
}
.how-to-play-container .games-table .final-prize-numbers .result-circle:hover, .lottery-results .games-table .final-prize-numbers .result-circle:hover {
  transform: scale(1.1);
}
.how-to-play-container .games-table .final-arrow, .lottery-results .games-table .final-arrow {
  color: #B79C71;
  font-size: 20px;
}
@media (max-width: 768px) {
  .how-to-play-container, .lottery-results {
    padding: 15px;
  }
  .how-to-play-container .draw-schedule-section, .how-to-play-container .result-work-section, .lottery-results .draw-schedule-section, .lottery-results .result-work-section {
    padding: 0px;
  }
  .how-to-play-container .section-title, .lottery-results .section-title {
    font-size: 24px;
    line-height: 29px;
  }
  .how-to-play-container .games-table .table-row > div, .lottery-results .games-table .table-row > div {
    border-right: none;
    border-bottom: 1px solid rgba(183, 156, 113, 0.2);
  }
  .how-to-play-container .games-table .table-row > div:last-child, .lottery-results .games-table .table-row > div:last-child {
    border-bottom: none;
  }
  .how-to-play-container .prize-categories, .lottery-results .prize-categories {
    flex-direction: column;
    align-items: center;
  }
  .how-to-play-container .final-numbers .result-circle, .lottery-results .final-numbers .result-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.blinking-text {
  animation: blink 1.5s ease-in-out infinite;
}

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