/*
 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&family=Mulish:ital,wght@0,200..1000;1,200..1000&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;
}
table{
    color: #000;
}
body {
  font-family: "Mulish";
  background-color: #ffffff;
  color: var(--text-color);
  line-height: 1;

}

main {

  background-color: #ffffff;
  margin-top: 207px;

  background-repeat: no-repeat;


}

main h1 {
  color: #0C42C2;
  font-size: 25px;
  padding-bottom: 30px;
  text-align: center;



}

.single main h1 {
  padding-bottom: 0;
}

.home main {


  padding-top: 30px;

}

a {
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  color: var(--primary-color);
}

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: 12px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;

  transition: 0.3s;
  min-width: 180px;
  width: 100%;
  font-size: 16px;
  color: white;
}

/* Navbar */
.navbar {

  background-image: url(../imgs/navbar.png);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #060D28;

}

.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;
}

.footer-section .content {
  font-size: 14px;
  line-height: 1.4;
}

.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 {

  width: 100%;


}

.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;
  font-size: 16px;
  border-radius: 100px;
}

.site-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.btn-register {
  background: #EBB039
}

.btn-login {
  background: transparent;

}



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

}

.nav-links a {
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
}

.nav-links a:hover {
  color: #2DFB79
}

.nav-links .active {
  color: #2DFB79
}

.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: 77px;
  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 2fr 1fr;
  align-items: center;
  background: #F2F8FF;

  color: #F2F8FF;
  border-radius: 10px;
  padding: 10px 26px;


}

.site-ratings .d-flex {
  gap: 10px;
}

.site-ratings img {
  width: 51px;
  height: 27px;
}

.site-ratings h3 {
  color: #101F52;
  font-size: 25px;
}

.site-content .rating {
  margin: 13px 0;
}

.banner .site-feature li {
  color: #fff
}

.site-content ul {
  display: grid;

  gap: 10px;
}

.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 section */
.intro {
  background: #F0F0F0;
  border-radius: 10px;
  margin: 0 auto;
  max-width: var(--container-max-width);
  padding: 31px 35px;
  position: relative;
  overflow: hidden;
  max-height: 475px;
  transition: all ease 0.3s;



}

.intro-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(240, 240, 240, 0), #F0F0F0);

}

.intro-fill p {
  position: absolute;
  left: 50%;
  text-align: center;
  align-items: center;
  transform: translateX(-50%);
  bottom: 50px;
}






.intro .custom-scroll {

  /* max-height: 475px;
  overflow: auto; */
}



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

.intro.active {
  max-height: max-content;
}
















/* 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: 0px 0 22px;
  font-size: 32px;
  color: #ffffff;
}

.related-posts h2 {
  text-align: left !important;
  color: #0C42C2;
}

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

.blog-card {
  overflow: hidden;
  transition: transform 0.3s;
  border-radius: 10px;
  position: relative;


}

.blog-card .meta {

  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;

  background: linear-gradient(to top, rgba(0, 92, 185, 0.9), rgba(0, 92, 185, 0.3), transparent);
  padding: 15px;
  display: flex;
  justify-content: end;
  flex-direction: column;
}


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

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

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

}

.post-date {
  color: #fff;

  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;
}

.exceprt {
  font-size: 14px;
  color: #000;
}

.blog-card h3 a {
  font-size: 25px;
  font-weight: bold;
  color: #0C42C2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: 2.8em;
  text-decoration: none;

}

.blog-excerpt {
  font-size: 15px;
  color: #000;
}

.meta {
  padding: 10px 0px;
}

/* Footer */
.footer {
  background-color: #0C42C2;
  margin-top: 25px;
  padding: 32px 0;
  color: #fff;



}

.footer .title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-list {
  background-color: #060D28;
  padding: 20px 0;
  border-bottom: 1px solid #38496C;
}

.footer-list ul {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.footer-list ul li a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 45px;
}

.footer-logo {
  max-width: 241px;
}

.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: 25px;
  font-weight: 700;
  margin-bottom: 95px;

}

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

ul.list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

.button li a {
  background-color: #1F87FF;
  padding: 14px 17px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 13px;
  max-width: 216px;
}

.footer-link {
  max-width: 1300px;
  margin: 35px auto 0;
  display: flex;
  gap: 15px;
}

.footer-link ul {
  display: flex;
  gap: 30px;
  list-style: none;

}

.footer-link ul li a {
  font-size: 14px;
  color: #F5DFB4;
}

.footer-link ul li {
  position: relative;
}

.footer-link ul li::after {
  width: 1px;
  height: 15px;
  content: "";
  right: -15px;
  background-color: #686B74;
  position: absolute;
  bottom: 0px;
}




.list-link {
  list-style: none;

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

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



.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 {
  max-width: 126px;

}

.footer-section-top {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-section-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 35px;
}

.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: #133FA9;

}

.another-footer .container {
  display: flex;
  padding: 25px 0;
  gap: 30px;
}

.another-footer .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 37px 0;

}


.another-footer .d-flex {

  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.another-footer .content {
  margin-bottom: 20px;
}

.another-footer div a {
  color: #2DFB79;
}

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

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

.another-footer a {
  color: #F5DFB4
}

.footer-section-left,
.footer-section-right {
  max-width: 1300px;
  margin: 0 auto;
}

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



/* .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: #101F52;
  text-decoration: none;
}

.navigation a.active {
  color: #101F52;
}

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



.hidden {
  display: none;
}

.show {
  max-height: max-content;
}



#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 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 37px 39px;

  background: #0C42C2;

  border-radius: 10px;
  grid-template-columns: 6fr 4fr;
  display: grid;

}

.content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-top h2 {
  font-size: 32px;
}

.crow {
  width: 89px;
  height: 47px;
}

.logo-game {
  width: 285px;
  height: 70px;
}

.banner-top {
  display: flex;
  justify-content: space-between;
  padding-right: 40px;
  gap: 30px;

  align-items: center;
}

.banner-top .rating {
  margin-bottom: 15px;
}

.banner-top ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  width: max-content;
}

.banner-top li {
  list-style: none;
  font-size: 14px;
  color: #fff;
}

.banner-bottom {

  display: flex;
  gap: 15px;
  align-items: center;

  justify-content: space-between;


}

.banner svg {
  width: 14px;
  height: 14px;
}

.rating {
  margin-bottom: 12px;
}

.site-feature {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.gr-btn .site-action {}

.banner-bottom h1 {
  font-size: 25px;
  color: #FF7D05
}

.btn-register {
  background: #FF7E07;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.btn-login {
  background: #fff;
  font-size: 16px;
  color: #0C42C2;
  font-weight: 600;
  border: 1px solid #0C42C2;
}

.site-content .w-50 {
  width: 50%;
}

.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) {





  .navbar-container {}



  .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 {



    margin: 0 auto;
    display: flex;
    justify-content: center;
    top: 73px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #38496C;
  }

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

  .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 {
  flex-direction: column;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;

}

.footer-nav .content {
  font-size: 14px;
  line-height: 1.5;
}

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


.navbar {
  padding: 0 1rem;
}

.navbar-container {}

.main-navbar {}



.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(2, 1fr);
}



img {
  max-width: 100%;
}

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

.navigations {
  padding: 22px 0;
}

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

.navigations a.active {
  color: #0C42C2;
}

.content .post-content {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}

.sb-header .title {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.sidebar {
  border-radius: 12px;
  overflow: hidden;


  height: max-content;
}

.sb-header {
  padding: 15px;
  display: flex;
  background-color: #0C42C2;
  gap: 10px;
  text-align: center;
  justify-content: center;

}



.sb-body {}

.featured-article h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 13px 0;

}

.mini-article img {
  width: 84px;
  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: #0C42C2;

}

.navigations .active {
  color: #101F52;

}

.meta-sb {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.meta-sb img {
  width: 13px;
  height: 13px;
}

.mini-articles {
  display: flex;
  flex-direction: column;




}



.mini-article {
  padding: 15px;
  color: #fff;
  background: #F2F8FF;
  border-bottom: 1px solid #eaeaea;



}

.mini-article {
  position: relative;
}

.mini-article:last-child {}

.mini-article:last-child::before {
  display: none;
}


.main-detail .content {
  border-radius: 10px;
  background-color: #F2F8FF;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.main-detail .content h1 {
  font-size: 25px;
  font-weight: 600;
  text-align: left;
}

.single .blog-card img {
  max-width: 172px;
  height: 114px;
}

.main-detail .content .post-meta {
  font-size: 14px;
  color: #000;

}

.single .blog-section .related-posts {

  padding: 23PX 0;
}

.main-detail .content .post-meta a {
  font-size: 14px;
  color: #F7AF24;

}

.single .blog-card {
  display: flex;
  gap: 25px;
}

.single .blog-excerpt {
  display: none;
}

.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;
}

.sb-header img {
  width: 14px;
  height: 21px;
  margin-top: 6px;
}

.content-header {
  color: #000;
}
.custom-scroll h2 , .custom-scroll p,.custom-scroll h3{
  margin-bottom: 10px;
  color: #000;
}

@media (max-width:992px) {
  .navbar .logo {
    display: unset;
  }

  .navbar-container {
    padding: 1rem;
  }

  .related-posts h2 {
    font-size: 24px;
  }

  .main-detail {
    margin-top: 10px;
  }

  .footer-list ul {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-content {
    padding: 15px;
  }

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

  .auth-buttons {
    gap: 5px;
  }

  .btn {
    font-size: 12px;
    align-items: center;
    padding: 10px;
    min-width: 120px;
  }

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

  .banner {
    margin-top: 25px;
    padding: 10px;
    grid-template-columns: 1fr
  }

  .banner-top {
    text-align: center;
    display: grid;
    padding-right: 0;
    gap: 15px;
    margin-bottom: 15px;
  }

  .site-content {
    flex-direction: column;
  }


  .site-content .w-50 {
    width: 100%;
  }

  .banner-top ul {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .banner-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 0;
    padding-left: 0;

  }

  .content-top {
    flex-direction: column;
    gap: 15px;
  }

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

  .banner-top>img {
    display: flex;
    margin: 0 auto;
  }

  .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-body {
    padding: 15px;
  }

  .site-card {
    padding: 15px 0;
  }

  .site-ratings h3 {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
  }

  .site-feature li {
    font-size: 12px;
    line-height: 1.2;
  }

  .site-content .rating {
    text-align: center;
  }

  .site-action {
    flex-direction: row;
    margin-top: 15px;
    justify-content: center;
    padding: 0;
  }

  .intro {
    padding: 10px;
  }

  .logo img {
    max-width: 120px;
  }

  main {
    margin-top: 77px;
    padding: 15px;
  }

  .betting-site {
    gap: 0;
  }

  .site-body {
    border: none;
  }

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



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

  .footer-nav {
    justify-content: space-between;
  }

  .footer-nav .title {
    margin-bottom: 15px;
  }

  .another-footer div {


    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
  }

  .another-footer p {
    margin: 0 auto;
  }

  .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%;
  }

  .footer-link ul {
    gap: 20px;
    flex-wrap: wrap;

  }

  .footer-link ul li::after {
    width: 1px;
    height: 10px;
    content: "";
    right: -15px;
    background-color: #686B74;
    position: absolute;
    bottom: 0px;
  }

  /* .main-navbar {
    background-color: transparent;
    padding: 0;
  } */

  .footer {
    padding-top: 0;
  }

  .footer-content {
    gap: 15px;
  }

  .another-footer {
    flex-direction: column;
    padding: 15px;
  }

  .main-navbar .logo {
    display: none;
  }

  .footer-section-top {
    flex-direction: column;
  }

  .footer-section-bottom {
    grid-template-columns: 1fr
  }

  .content {
    font-size: 14px;
  }

  .list-ink {
    margin-bottom: 20px;
  }

  .navbar-container {
    display: FLEX;
    align-items: center;
  }

  .single .blog-card {
    flex-direction: column;
    gap: 10px;
  }

  .single .blog-card h3 a {
    font-size: 18px;
  }

  .single .blog-card img {
    max-width: 100%;
    height: unset;
  }

  .blog-card h3 a {
    font-size: 18px;
  }
}