/*
 Theme Name: Bet3
 Theme URI: https://example.com/bet3/
 Author: Vsbet
 Author URI: https://example.com/
 Description: A WordPress theme for a betting website based on provided HTML templates.
 Version: 1.0
 Text Domain: bet3
*/

@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  --primary-color: #FF7E07;
  --secondary-color: #1a1a1a;
  --text-color: #ffffff;
  --text-primary-color: #333333;
  --text-secondary-color: #eec982;
  --text-gray: #b3b5be;
  --background-dark: #20222a;
  --nav-link-background-color: #2b2d38;
  --header-background-color: #201f1f;
  --card-featured-background-color: #515567;
  --site-rank-background-color: #fead00;
  --site-rank-border-color: #ffff65;
  --card-background-color: #2c3039;
  --border-radius-lg: 12px;
  --border-radius-md: 8px;
  --border-radius-sm: 8px;
  --container-max-width: 1300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bai Jamjuree";
  background-color: #ffffff;
  color: var(--text-color);
  line-height: 1.6;
}

a {
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  color: var(--primary-color);
}
.custom-scroll h2, .custom-scroll h3,.custom-archive-content{
    color: #000;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.5rem;
}

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

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

.mt-7 {
  margin-top: 56px !important;
}

.mt-8 {
  margin-top: 64px !important;
}

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

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

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

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--text-secondary-color) !important;
}

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

.btn {
  padding: 13px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  min-width: 150px;
  width: 100%;
  font-size: 16px;
  color: white;
}

/* Navbar */
.navbar {
  background-color: #FF7E07;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin: 0 auto;
  max-width: var(--container-max-width);
}

.navbar-left,
.navbar-right {
  display: flex;
  align-items: center;
}

.navbar-right {
  gap: 0.5rem;
  align-items: flex-start;
}

.navbar-right .menu-toggle {
  margin-top: 0.5rem;
}

.navbar-right a {
  flex: 1;
}

.navbar-right a button {
  width: 100%;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.nav-text {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;

}

.logo a {
  display: inline-block;
  line-height: 1;
}

.logo img {
  width: 100%;
}

.logo .highlight {
  color: var(--primary-color);
}

.auth-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 198px;
  gap: 29px
}

.btn-register,
.btn-login {
  white-space: nowrap;
  width: unset;

  color: var(--text-color);

  background-color: transparent;
}

.btn-login {
  background: linear-gradient(to right, #3111A3, #1675DB);
}

.btn-register {
  background: linear-gradient(to right, #10A175, #0FB799);
}

.btn-bet-now {
  white-space: nowrap;


  color: var(--text-color);
  background: linear-gradient(to right, #D31714, #EC221F);
  border: none;

}

.nav-links {
  text-transform: uppercase;
  font-size: 16px;
  padding: 0.5rem 0;
  font-weight: bold;
  display: none;
  list-style: none;

  z-index: 9999;
}

.nav-links a {
  padding: 0.5rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links .active {
  color: var(--primary-color);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: 0.3s;
}

/* Mobile Menu */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  background-color: var(--nav-link-background-color);
  padding: 1rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  padding-left: 1rem;
  list-style-type: none;
  display: none;
}

.dropdown svg {
  margin-left: 0.5rem;
}






/* BETING SITE */
.betting-site {
  max-width: 1300px;
  margin: 25px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;

}

.site-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  background: url("../imgs/bg-3.png");

  color: #fff;
  border-radius: 10px;
  padding: 7px 7px 0 7px;
  border: 1px solid #FF7E07;
  background-size: cover;

}

.site-ratings h3 {
  color: #FF7E07;
  font-size: 32px;
}

.site-feature li {
  list-style: none;
  font-size: 14px;
  color: #000;
}

.site-action {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
  align-items: end;

}

.site-action a {
  width: max-content;
}

/* Game Categories */
.game-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.game-card {
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Game Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.game-grid a:hover {
  text-decoration: none;
}

.game-item {
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.game-item:hover {
  transform: scale(1.05);
}

.game-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.game-item span {
  position: absolute;
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  bottom: 2rem;
  left: 0;
  width: 100%;
}

.game-card a {
  width: 100%;
  display: inline-block;
}

.game-card a:hover {
  text-decoration: none;
}

.game-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.game-card span {
  position: absolute;
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  bottom: 2rem;
  left: 0;
  width: 100%;
  color: #fff;
}

/* Intro section */
.intro {
  background: #FFF8F2;
}

.intro .content {

  margin: 0 auto;
  max-width: var(--container-max-width);
  padding: 35px 0;

}



.intro .custom-scroll {

  max-height: 340px;
  overflow: auto;
}



.intro p {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}





/* Blog Section */
.blog-section {
  position: relative;
  margin: 0 auto;
  padding-bottom: 2rem;
  max-width: var(--container-max-width);
  border-radius: var(--border-radius-lg);
}

.blog-section::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(178, 180, 189, 0.2);
}

.blog-section:last-child:after {
  display: none;
}

.blog-section h2 {
  text-align: center;
 margin: 25px 0;
  font-size:32rem;
  color: #ffffff;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin: 0 auto;
}

.blog-card {
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card>a {
  width: 100%;
}

.blog-card img {
  width: 100%;
  height: 166px;
  object-fit: cover;
  border-radius: 5px;
}

.blog-card h3 {
  margin: 10px 0;

}

.post-date {
  color: #686B74;
  display: flex;
  gap: 10px;

  align-items: center;
  text-align: center;
}
.post-date img{
  width: 13px;
  height: 13px;
}
.date{
  display: flex
;
    gap: 20px;
    align-items: center;
}
.date hr{
  width: 100%;
  height: 1px;
  background-color: #FF7E07;
  border: none;
}

.blog-card h3 a {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

/* Footer */
.footer {
  background-color: #1F222A;
  padding: 42px 0
}

.footer-logo {
  margin: -42px auto 0;
  display: flex;
}

.contact-section>p {
  margin: 22px 0;
  font-size: 14px;
}

.list-social {

  display: flex;
  gap: 27px;
}

.list-social img {
  padding: 12px;
  border-radius: 5px;
  background-color: #35383C;
}

.footer-nav .title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  padding-left: 34px;
}

.footer-nav .title::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 100%;
  background-color: #FF7E07;
  left: 0;
  top: 0;

}

.list-link {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.list-link li a {
  font-size: 14px;
  color: #ffffff
}



.footer-section h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-section:first-child h3 {
  margin-bottom: 2rem;
}

.footer-section ul li a {
  display: flex;
  align-items: center;
}

.footer-section ul li svg {
  margin-right: 8px;
  fill: var(--primary-color);
}

.footer-section ul li:hover svg {
  fill: var(--primary-color);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-links {
  gap: 2rem;
}

.contact-section>p {
  margin-top: 1rem;
}

.contact-section .contact-info a {
  color: var(--text-gray);
}

.contact-info a {
  padding: 0 0.75rem;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info a:first-child {
  padding-left: 0;
}

.contact-info a:last-child {
  padding-right: 0;
}

.another-footer {
  background-color: #18181A;
  padding: 21px 0
}

.another-footer div {

  justify-content: space-between;
}

.list-contact {
  display: flex;
  gap: 25px;
}

.list-contact div {
  position: relative;
  font-size: 16px;
}

.another-footer a {
  color: #FF7E07
}

.list-contact div::after {
  width: 1px;
  height: 15px;
  content: "";
  right: -12px;
  background-color: #686B74;
  position: absolute;
  bottom: 5px;
}



/* .main-detail {
  margin-top: 60px;
} */

.navigation {
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation a {
  white-space: nowrap;
  color: var(--text-color);
  text-decoration: none;
}

.navigation a.active {
  color: var(--text-secondary-color);
}

.navigation a:hover {
  text-decoration: underline;
}

.custom-scroll::-webkit-scrollbar {
  width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {

  background-color: #FFCD9E;
}

.custom-scroll::-webkit-scrollbar-thumb {
  width: 2px;

  background-color: #FF7E07;
}

#scrollTopBtn {
  display: none !important;
  position: fixed;
  width: 48px;
  height: 48px;
  bottom: 20px;
  right: 24px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 100%;
  background-color: var(--primary-color);
  backdrop-filter: blur(70px);
}

#scrollTopBtn svg {
  fill: white;
}

/* BANNER */
.banner {
  overflow: hidden;
  position: relative;
  margin-top: 160px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.banner-item {
  flex: 0 0 100vw;
  max-width: 100vw;
  min-height: 431px;
  background: url("../imgs/banner-hero.png");
  background-size: cover;
}

.banner-content {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 10px;
}

.banner-content .h1 {
  font-size: 70px;
  background: linear-gradient(to right, #FF7E07 0%, #FB9E4A 88%, #FAA253 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content .title {
  font-size: 40px;
  background: linear-gradient(to right, #FF7E07 0%, #FB9E4A 88%, #FAA253 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 30px;
  width: 35%;
}

.banner-content .description {
  color: #ffffff;
  font-size: 20px;
  width: 35%;

}


.banner-item {
  flex: 0 0 100%;
}

.dots {
  position: absolute;
  bottom: 35px;
  display: flex;
  gap: 8px;
}

.dot {
  display: inline-block;
  width: 48px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;

  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #FF7E07;
}


/* PROMOTION*/
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background: url("../imgs/bg-1.png");

  color: #fff;
  border-radius: 10px;
  gap: 20px;
  background-size: cover;
  max-width: 1300px;
  margin: 25px auto;
}

.promo-col {
  display: flex;
  flex-direction: column;

}

.image-col {
  padding-top: 25px;
}

.img-top1 {
  max-width: 86px;
  margin-left: 20px;
}

.img-vsbet {
  max-width: 256px;
}



.logo .vs {
  color: black;
}

.logo .bet {
  color: white;
}

.center-col {
  align-items: start;
}

.center-col .slogan {
  font-size: 32px;


  font-weight: 700;
}

.center-col .stars {
  font-size: 18px;
  color: gold;
}

.info-col {
  align-items: end;
  padding-right: 33px;

}

.info-col ul.features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #000;
}

.info-col ul li {
  margin-bottom: 8px;
  text-align: end;
}

.info-col .buttons {
  display: flex;
  gap: 28px;
}

.btn {
  padding: 10px 20px;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
}

.btn.register {
  background: linear-gradient(to right, #10A175, #0FB799);
  /* Green */
}

.btn.review {
  background: linear-gradient(to right, #3111A3, #1675DB);
  /* Blue gradient */
}

/*  GIFT SECTION */
.gift-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 1300px;
  margin: 0 auto;
  gap: 25px;
}

.gift-section .text {
  font-size: 16px;
}

.gift-section .upper-text {
  font-size: 30px;
  font-weight: 700;
}

.gift-section img {
  margin-left: 5px;
}

.gift-section .gift-col {
  min-height: 150px;
  padding-top: 35px;
  padding-left: 20px;
}

.gift-section .col-1 {
  background: url("../imgs/khung1.png");
  background-size: cover;
  background-repeat: no-repeat;

}

.gift-section .col-2 {
  background: url("../imgs/khung2.png");
  background-size: cover;
  background-repeat: no-repeat;

}

.gift-section .col-3 {
  background: url("../imgs/khung3.png");
  background-size: cover;
  background-repeat: no-repeat;

}

.gift-section .col-4 {
  background: url("../imgs/khung4.png");
  background-size: cover;
  background-repeat: no-repeat;

}

/*POLICY */

.policy-section {
  background: url("../imgs/bg-2.png");


  border-radius: 10px;

  background-size: cover;
  max-width: 1300px;
  margin: 25px auto;
  padding: 48px 0 48px 35px;

}

.policy-section .des {
  margin: 5px 0 25px;
  width: 50%;
}

.policy-section .btn {
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 12px 20px;
}
.main-detail{
  grid-template-columns: 3fr 1fr;
    display: grid
;
    max-width: 1300px;
    margin: 0 auto;
    gap: 25px;
}

@media (min-width: 463px) {
  #scrollTopBtn {
    bottom: 120px;
  }
}

@media (min-width: 576px) {


  .auth-buttons {
    max-width: unset;
  }

  .hero {
    margin-top: 69px;
  }

  .nav-links.active {
    top: 69px;
  }

  .site-footer-item div {
    flex-direction: row;
    justify-content: flex-start;
  }

  .site-footer-item>div>* {
    flex: 1;
  }
}

/* Desktop Styles */
@media (min-width: 768px) {


  /* .main-detail {
    margin-top: 144px;
  } */

  .navbar {
    /* padding: 0 1rem; */
  }

  .navbar-container {
    display: flex;
    max-width: var(--container-max-width);
    flex-wrap: wrap;
    margin: auto;
    padding: 1rem 0;
  }



  .hero {
    margin-top: 73px;
    height: 400px;
  }

  .hero-title {
    font-size: 1.685rem;
    padding: 0;
    margin: 0 auto;
  }

  .betting-sites {
    padding: 0;
  }

  .site-header .premium-container {
    transform: translateX(-32px);
    width: 30%;
    margin-right: -30%;
  }






  .site-info .site-image {
    margin-top: 0;
    width: 164px;
  }

  .site-info::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .site-rating {
    margin-top: 0;
    width: auto;
  }

  .site-features {
    grid-area: 1 / 2 / 2 / 4;
    margin-top: 0;
  }

  .site-actions {
    grid-area: 2 / 2 / 3 / 4;
    margin-top: 0;
    align-items: center;
  }

  /* Game categories */
  .game-categories {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Game grid */

  .game-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .intro-section {
    padding: 2rem 2rem;
  }



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

  .footer-section:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fit,
        minmax(calc((1100px - 3 * 1.5rem - 64px) / 4), 1fr));
  }

  #scrollTopBtn {
    bottom: 88px;
  }
}

@media screen and (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  .main-navbar div {
    background-color: #E86C00;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    top: 73px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.5rem 1rem;
  }

  .nav-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    gap: 2rem;
  }

  .dropdown-content {
    padding-left: 0;
    list-style-type: none;
    display: none;
    position: absolute;
    background-color: var(--nav-link-background-color);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .dropdown:hover .dropdown-content {
    display: block;
    top: 100%;
    padding-top: 8px;
  }

  .dropdown-content a {
    padding: 0.5rem 1rem;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #E86C00;
    color: var(--text-color);
  }

  .hero {
    margin-top: 118px;
  }
}

.footer-content {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  gap: 33px;
}

@media screen and (min-width: 1100px) {


  .navbar {
    /* padding: 0 1rem; */
  }

  .navbar-container {
    padding: 1rem 0;
  }

  .navbar-left .nav-text {
    display: block;
    padding-left: 4rem;
    position: relative;
  }

  .navbar-left .nav-text::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    transform: translateX(32px);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links {
    width: var(--container-max-width);
  }

  .betting-sites {
    padding: 0;
  }

  .site-header .premium-container {
    transform: translateX(2px);
    width: auto;
    margin-right: 0;
  }









  .site-footer {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.5rem 1rem;
  }

  .site-footer-item {
    position: relative;
  }

  .site-footer-item div {
    justify-content: center;
  }

  .site-footer-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .site-footer-item:last-child::after {
    display: none;
  }

  .site-footer-item>div>* {
    flex: unset;
  }

  .featured .site-actions {
    display: flex;
  }

  .featured .site-image {
    width: 218px;
  }

  /* Game grid */
  .game-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }




}

img {
  max-width: 100%;
}

.post-header {
  margin: 160px auto 0;
  max-width: 1300px;
}

.navigations {
  padding: 22px 0;
}

.navigations a {
  font-size: 16px;
  color: #FF7E07
}

.navigations a.active {
  color: #000;
}
.sb-header .title{
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.sidebar{
  border-radius: 12px;
  overflow: hidden;
}
.sb-header{
  padding: 15px ;
  background-color: #E86C00;
}
.sb-body{
  background-color: #FF7E07;
  padding: 15px;
}
.featured-article h3{
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 13px 0;

}

.mini-article img{
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 3px;
}
.mini-article a{
  display: flex;
  gap: 15px;
  align-items: center;
}
.mini-article a span{
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.mini-articles {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-top: 23px;
}
.sb-body .post-date{
  font-size: 13px;
  color: #fff;
}
.sb-body .date hr{
  background-color: #fff;
}

.content-post{
  background-color: #FFF8F2;
  padding: 20px 28px;
  border-radius: 10px
}
.content-post h2{
  font-size: 32px;
  color:#000
}
.content-post .content{
  color:#000;
  font-size: 14px;
}
.post-date{
  font-size: 12px;
}
.content-post .post-date{
  margin:5px 0 10px
}
.main-detail .relative-title{
  font-size: 32px;
  margin: 25px 0;
  color: #000;
  font-weight: 700;
  text-align: center;
}



@media (max-width:992px) {

  .site-body,
  .promo-banner,
  .footer-content,
  .gift-section {
    grid-template-columns: 1fr
  }

  .auth-buttons {
    gap: 5px;
  }

  .btn {
    font-size: 12px;
    align-items: center;
    padding: 5px;
  }

  .list-social {
    gap: 10px;
    justify-content: center;
  }

  .banner {
    margin-top: 125px;
  }

  .banner-item {
    padding: 0 15px;
  }

  .banner-content .h1 {
    font-size: 40px;
  }

  .banner-content .title,
  .banner-content .description {
    width: 100%;
  }

  .promo-banner {
    padding: 15px;
  }

  .center-col div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

  .info-col ul li {
    text-align: center;
  }

  .info-col {
    text-align: center;
    padding: 0;
    align-items: center;
  }

  .gift-section {
    padding: 15px;
  }

  .policy-section {
    padding: 15px;
  }

  .policy-section .des {
    width: 100%;
  }

  .site-card,
  .site-body {
    padding: 15px;
  }

  .site-action {
    flex-direction: row;
    margin-top: 15px;
  }

  .betting-site {
    gap: 0;
  }

  .site-body {
    border: none;
  }

  .intro .custom-scroll {
    padding: 0 15px;
  }

  .footer {
    padding: 15px;
  }

  .footer-logo {
    margin: -15px auto 0px;
  }

  .another-footer div {

    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main-detail{
    padding: 15px ;
        grid-template-columns: 1fr
  }
  .navigations{
     padding: 15px ;
  }
  .content-post h2, .main-detail .relative-title{
    font-size: 24px;
  }
  .featured-article a, .featured-article a img{
    width: 100%;
  }
}