/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

/* Container CSS chung cho cả dự án */
.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-pc .menu-item{
    width: unset;
    height: unset;
    border-top: 0 !important;
    margin: 0 !important
    ;
}
.nav-pc  .nav-list{
    gap: 30px;
}
.nav-pc .menu-item  a{
    color: #000;
}

.container-full {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

/* Grid system */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

/* Header Styles */
.header {
  width: 100%;
  height: 65px;
  background: #ffffff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.casino-list {
  padding: 30px 0;
}
.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casino-item {
  width: 100%;
  max-width: 1300px;
  height: 181px;
  background-color: #ffffff;
  border: 1px solid #f70000;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 30px;
}

.casino-number {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #b91c1c;
  width: 38px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casino-logo {
  width: 199px;
  flex-shrink: 0;
}

.casino-logo img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.casino-name {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #b91c1c;
  flex-shrink: 0;
  min-width: 120px;
}

.casino-stars {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.casino-stars img {
  width: 15.43px;
  height: 15.43px;
}

.casino-features {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  line-height: 1.25;
  flex: 1;
  margin: 0 20px;
}

.casino-features p {
  margin-bottom: 5px;
}

.casino-buttons {
  display: flex;
  flex-direction: column;
  gap: 27px;
  flex-shrink: 0;
}
.logo a {
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-text {
  flex: 1;
  min-width: 0;
  max-width: 691px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.21em;
  color: #121212;
  text-align: left;
  display: flex;
  align-items: center;
}

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 17px;
  height: 40px;
}

.btn {
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: opacity 0.2s ease;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.21em;
  color: #ffffff;
  text-align: center;
  width: 112px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(
    15px 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    0 100%,
    0 15px
  );
  -webkit-clip-path: polygon(
    15px 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    0 100%,
    0 15px
  );
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  opacity: 0.8;
}

.btn-login {
  background: #2baa50;
  width: 135px;
  height: 40px;
}

.btn-register {
  background: #b91c1c;
  width: 165px;
  height: 40px;
}

.btn-menu {
  width: 40px;
  height: 40px;
  background: #e4e4e4;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Layout */
.main {
  width: 100%;
  padding-top: 20px;
  background: #f5f5f5;
}

.main-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Sidebar Menu */
.sidebar {
  flex-shrink: 0;
  width: 420px;

  background: #ffffff;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

.menu-item {
  position: relative;
  width: 284px;
  height: 40px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-item:first-child {
  margin-top: 10px;
}

.menu-item:not(:first-child) {
  margin-top: 0;
  border-top: 1px solid #f0f0f0;
}

.menu-item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  border-radius: 0;
  z-index: 0;
}

.menu-item-active .menu-item-bg {
  background: #f0f0f0;
}

.menu-item-hot .menu-item-bg {
  background: #b91c1c;
}

.menu-icon-left {
  width: 12px;
  margin-left: 20px;
  margin-right: 18px;
  z-index: 1;
  object-fit: contain;
}

.menu-item-hot .menu-icon-left {
  width: 27px;
  height: 30.14px;
  margin-left: 10px;
  margin-right: 8px;
}

.menu-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.21em;
  color: #121212;
  z-index: 1;
  flex: 1;
}

.menu-item-hot .menu-text {
  font-weight: 700;
  color: #ffffff;
}

.menu-icon-right {
  width: 7.12px;
  height: 11px;
  margin-right: 7px;
  z-index: 1;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-item-hot.menu-open .menu-icon-right {
  transform: rotate(180deg);
}

.menu-item:hover {
  opacity: 0.9;
}

/* Submenu */
.submenu {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background: #ffffff;
}

.submenu.menu-open {
  max-height: 300px;
  opacity: 1;
}

.submenu-item {
  display: block;
  padding: 12px 20px 12px 50px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.21em;
  color: #121212;
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.submenu-item:hover {
  background-color: #f5f5f5;
  color: #2baa50;
}

.submenu-item:first-child {
  border-top: 1px solid #f0f0f0;
}

/* Slide Container */
.slide-container {
  flex: 1;
  min-width: 0;
  height: 500px;
  overflow: hidden;
  border-radius: 0;
}

.slide-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.slide-item {
  width: 20%;
  height: 100%;
  flex-shrink: 0;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-dots {
  position: absolute;
  bottom: 25px;
  left: 10%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.slide-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.slide-dot.active {
  background: #2baa50;
}

.slide-dot:hover {
  opacity: 0.8;
}

/* Promotion Cards Section */
.promo-section {
  width: 100%;
  padding: 20px 0;
  background: #f5f5f5;
}

.promo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1300px;
}

.promo-card {
  width: 100%;
  height: 132px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.promo-card-wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
}

.promo-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  grid-column: 1;
  grid-row: 1;
}

.promo-card-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.21em;
  color: #ffffff;
  text-align: left;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  padding-top: 32px;
  padding-left: 20px;
  width: fit-content;
  z-index: 2;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.promo-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.21em;
  color: #121212;
  text-align: center;
  margin: 0;
  padding: 0;
}

.promo-description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.21em;
  color: #121212;
  text-align: center;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

/* Content Section */
.content-section {
  width: 100%;
  min-height: 533px;
  background: #ffffff;
  padding: 26px 0;
}

.content-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.content-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.21em;
  color: #121212;
  text-align: justify;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

/* NC Logos Section */
.nc-logos-section {
  width: 100%;
  padding: 20px 0;
  background: #f5f5f5;
}
.nav{
  display: none;
    width: 100%;
    justify-content: center;
  
    gap: 20px;
    padding: 20px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link i {
  font-size: 11px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}


.nc-logos-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.nc-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: 100%;
}

.nc-logo-item {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.nc-logo-item:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.nc-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Footer Styles */
.footer {
  width: 100%;
  min-height: 221px;
  background: #ffffff;
  padding: 30px 0;
}

.footer-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  min-height: 221px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-container.container {
  padding: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-column {
  flex: 0 0 auto;
  width: 303px;
}

.footer-column-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.21em;
  color: #121212;
  margin-bottom: 20px;
  height: 19px;
  display: flex;
  align-items: center;
}

.footer-column-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.21em;
  color: #121212;
}

.footer-column-content p {
  margin-bottom: 8px;
}

.footer-column-content a {
  color: #121212;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-column-content a:hover {
  color: #2baa50;
}

.footer-social-icons {
  display: flex;
  gap: 22px;
  margin-top: 23px;
  margin-bottom: 23px;
}

.footer-social-icon {
  width: 43px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer-social-icon:hover {
  opacity: 0.7;
}

.footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.21em;
  color: #121212;
  margin-top: 23px;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .header-container {
    padding: 0 20px;
    gap: 15px;
  }

  .header-text {
    font-size: 14px;
    max-width: 500px;
  }

  .btn-login,
  .btn-register {
    width: 130px;
  }

  .btn {
    font-size: 14px;
    height: 38px;
    clip-path: polygon(
      13px 0,
      100% 0,
      100% calc(100% - 13px),
      calc(100% - 13px) 100%,
      0 100%,
      0 13px
    );
    -webkit-clip-path: polygon(
      13px 0,
      100% 0,
      100% calc(100% - 13px),
      calc(100% - 13px) 100%,
      0 100%,
      0 13px
    );
  }

  .btn-login,
  .btn-register {
    height: 38px;
  }

  .btn-text {
    font-size: 14px;
    width: 100%;
  }

  .footer-container {
    padding: 0 20px;
    justify-content: flex-start;
    gap: 25px;
  }

  .footer-column {
    width: auto;
    min-width: 220px;
    flex: 1 1 auto;
  }

  .promo-section {
    padding: 18px 0;
  }

  .promo-container {
    gap: 15px;
    padding: 0 10px;
  }

  .promo-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .promo-card {
    height: 122px;
  }

  .promo-card-text {
    font-size: 14px;
    padding-top: 28px;
    padding-left: 18px;
  }

  .promo-title {
    font-size: 28px;
  }

  .content-section {
    padding: 24px 0;
    min-height: auto;
  }

  .content-container {
    padding: 0 30px;
  }

  .content-text {
    font-size: 14px;
  }

  .nc-logos-section {
    padding: 18px 0;
  }

  .nc-logos-container {
    padding: 0 30px;
  }

  .nc-logos {
    gap: 20px;
  }

  .nc-logo-item {
    width: 155px;
    height: 60px;
  }
}

@media (max-width: 1200px) {
  .header-text {
    font-size: 13px;
    max-width: 400px;
  }

  .btn-login,
  .btn-register {
    width: 160px;
  }

  .btn {
    font-size: 13px;
    height: 36px;
    clip-path: polygon(
      12px 0,
      100% 0,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      0 100%,
      0 12px
    );
    -webkit-clip-path: polygon(
      12px 0,
      100% 0,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      0 100%,
      0 12px
    );
  }

  .btn-login,
  .btn-register {
    height: 36px;
  }

  .btn-text {
    font-size: 13px;
  }

  .footer-container {
    gap: 20px;
  }

  .footer-column {
    min-width: 200px;
  }

  .footer-column-title {
    font-size: 15px;
  }

  .footer-column-content {
    font-size: 13px;
  }

  .main {
    padding-top: 18px;
  }
  .casino-item {
    height: 160px;
    padding: 0 30px;
    gap: 12px;
  }

  .casino-number {
    font-size: 28px;
    width: 35px;
    height: 35px;
  }

  .casino-logo {
    width: 145px;
  }

  .casino-name {
    font-size: 24px;
    min-width: 80px;
  }

  .casino-features {
    font-size: 13px;
    margin: 0 15px;
  }

  .casino-stars img {
    width: 14px;
    height: 14px;
  }

  .casino-buttons {
    gap: 20px;
  }
  .main-container {
    gap: 15px;
  }

  .sidebar {
    width: 280px;
    min-height: 480px;
  }

  .menu-item {
    width: 260px;
  }

  .slide-container {
    height: 450px;
  }

  .slide-dots {
    bottom: 20px;
  }

  .promo-section {
    padding: 18px 0;
  }

  .promo-container {
    gap: 32px;
    padding: 0 25px;
  }

  .promo-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .promo-card {
    height: 132px;
  }

  .promo-card-text {
    font-size: 14px;
    padding-top: 30px;
    padding-left: 18px;
  }

  .promo-title {
    font-size: 26px;
  }

  .promo-description {
    font-size: 13px;
  }

  .content-section {
    padding: 22px 0;
  }

  .content-container {
    padding: 0 25px;
  }

  .content-text {
    font-size: 13px;
  }

  .nc-logos-section {
    padding: 18px 0;
  }

  .nc-logos-container {
    padding: 0 25px;
  }

  .nc-logos {
    gap: 18px;
  }

  .nc-logo-item {
    width: 145px;
    height: 56px;
  }
}

@media (max-width: 992px) {
  .main-container {
    gap: 16px;
  }

  .sidebar {
    width: 100%;
    max-width: 100%;
  }

  .menu-item {
    width: calc(100% - 20px);
  }

  .slide-container {
    height: 380px;
  }

  .slide-dots {
    bottom: 18px;
    left: 50%;
  }

  .promo-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .promo-card {
    height: 120px;
  }

  .promo-card-text {
    font-size: 14px;
    padding-top: 28px;
    padding-left: 18px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .header-container {
    gap: 12px;
  }

  .header-text {
    display: none;
  }

  .btn-login,
  .btn-register {
    width: 130px;
  }

  .btn {
    font-size: 13px;
    height: 35px;
    clip-path: polygon(
      12px 0,
      100% 0,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      0 100%,
      0 12px
    );
    -webkit-clip-path: polygon(
      12px 0,
      100% 0,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      0 100%,
      0 12px
    );
  }

  .btn-login,
  .btn-register {
    height: 35px;
  }

  .btn-text {
    font-size: 13px;
  }

  .header-actions {
    gap: 12px;
  }

  .footer-container {
    padding: 0 20px;
    gap: 20px;
  }

  .footer-column {
    width: calc(50% - 15px);
    min-width: auto;
    flex: 0 0 calc(50% - 15px);
  }

  .footer-social-icons {
    gap: 15px;
  }

  .footer-social-icon {
    width: 38px;
    height: 38px;
  }

  .main {
    padding-top: 18px;
  }

  .main-container {
    flex-direction: column;
    gap: 18px;
  }

  .sidebar {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .menu-item {
    width: calc(100% - 20px);
    margin: 0 10px;
  }

  .menu-item:first-child {
    margin-top: 10px;
  }

  .menu-item:not(:first-child) {
    margin-top: 0;
  }

  .slide-container {
    width: 100%;
    height: 400px;
  }

  .slide-dots {
    bottom: 20px;
    left: 50%;
  }

  .promo-section {
    padding: 16px 0;
  }

  .promo-container {
    gap: 28px;
    padding: 0 20px;
  }

  .promo-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .promo-card {
    height: 120px;
  }

  .promo-card-text {
    font-size: 14px;
    padding-top: 28px;
    padding-left: 18px;
  }

  .promo-title {
    font-size: 24px;
  }

  .promo-description {
    font-size: 13px;
  }

  .content-section {
    padding: 20px 0;
  }

  .content-container {
    padding: 0 20px;
  }

  .content-text {
    font-size: 13px;
  }

  .nc-logos-section {
    padding: 16px 0;
  }

  .nc-logos-container {
    padding: 0 20px;
  }

  .nc-logos {
    gap: 15px;
  }

  .nc-logo-item {
    width: 135px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .casino-item {
    width: 100%;
    max-width: 100%;
  }

  .casino-item {
    height: auto;
    padding: 20px;
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }

  .casino-number {
    font-size: 24px;
    width: 30px;
    height: 30px;
  }

  .casino-logo {
    width: 120px;
  }

  .casino-name {
    font-size: 24px;
    min-width: auto;
  }

  .casino-features {
    font-size: 12px;
    margin: 0;
  }

  .casino-stars img {
    width: 14px;
    height: 14px;
  }

  .casino-buttons {
    gap: 15px;
    flex-direction: row;
  }
  .container {
    padding: 0 15px;
  }

  .row {
    margin: 0 -10px;
  }

  .col {
    padding: 0 10px;
  }

  .header {
    height: 60px;
  }

  .header-container {
    gap: 10px;
  }

  .logo {
    height: 35px;
  }

  .btn-login,
  .btn-register {
    width: 90px;
    height: 35px;
  }

  .btn {
    font-size: 12px;
    height: 35px;
    clip-path: polygon(
      12px 0,
      100% 0,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      0 100%,
      0 12px
    );
    -webkit-clip-path: polygon(
      12px 0,
      100% 0,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      0 100%,
      0 12px
    );
  }

  .btn-text {
    font-size: 12px;
    height: 35px;
    width: 100%;
  }

  .btn-menu {
    width: 35px;
    height: 35px;
  }

  .menu-icon-wrapper {
    width: 20px;
    height: 20px;
  }

  .header-actions {
    gap: 8px;
  }

  .footer {
    padding: 25px 0;
  }

  .footer-container {
    padding: 0 20px;
    gap: 25px;
    min-height: auto;
  }

  .footer-column {
    width: calc(50% - 15px);
    min-width: auto;
    flex: 0 0 calc(50% - 15px);
  }

  .footer-column-title {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .footer-column-content {
    font-size: 13px;
  }

  .footer-column-content a {
    margin-bottom: 6px;
  }

  .footer-social-icons {
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .footer-social-icon {
    width: 35px;
    height: 35px;
  }

  .footer-copyright {
    font-size: 13px;
    margin-top: 15px;
  }

  .main {
    padding-top: 15px;
  }

  .main-container {
    gap: 15px;
  }

  .sidebar {
    min-height: auto;
  }

  .menu-item {
    height: 45px;
    margin: 0 12px;
  }

  .menu-item:first-child {
    margin-top: 12px;
  }

  .menu-text {
    font-size: 15px;
  }

  .menu-icon-left {
    width: 11px;
    margin-left: 18px;
    margin-right: 15px;
  }

  .menu-item-hot .menu-icon-left {
    width: 25px;
    height: 29px;
    margin-left: 9px;
    margin-right: 7px;
  }

  .submenu-item {
    padding: 10px 18px 10px 45px;
    font-size: 13px;
  }

  .slide-container {
    height: 350px;
  }

  .slide-dots {
    bottom: 15px;
    gap: 10px;
    left: 50%;
  }

  .slide-dot {
    width: 9px;
    height: 9px;
  }

  .promo-section {
    padding: 15px 0;
  }

  .promo-container {
    gap: 25px;
    padding: 0 15px;
  }

  .promo-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .promo-card {
    height: 110px;
  }

  .promo-card-text {
    font-size: 13px;
    padding-top: 25px;
    padding-left: 15px;
  }

  .promo-title {
    font-size: 22px;
  }

  .promo-description {
    font-size: 12px;
    line-height: 1.3em;
  }

  .content-section {
    padding: 18px 0;
  }

  .content-container {
    padding: 0 15px;
  }

  .content-text {
    font-size: 12px;
    line-height: 1.3em;
  }

  .nc-logos-section {
    padding: 15px 0;
  }

  .nc-logos-container {
    padding: 0 15px;
  }

  .nc-logos {
    gap: 12px;
  }

  .nc-logo-item {
    width: 120px;
    height: 48px;
  }
}

@media (max-width: 600px) {
  .promo-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promo-card {
    height: 120px;
  }

  .promo-card-text {
    font-size: 14px;
    padding-top: 28px;
    padding-left: 18px;
  }
}

@media (max-width: 480px) {
  .casino-item {
    height: auto;
    padding: 15px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .casino-number {
    font-size: 20px;
    width: 25px;
    height: 25px;
  }

  .casino-logo {
    width: 100px;
  }

  .casino-name {
    font-size: 20px;
    min-width: auto;
  }

  .casino-features {
    font-size: 12px;
    margin: 0;
  }

  .casino-stars img {
    width: 12px;
    height: 12px;
  }

  .casino-buttons {
    gap: 10px;
    flex-direction: row;
  }

  .casino-buttons .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .container {
    padding: 0 10px;
  }

  .row {
    margin: 0 -5px;
  }

  .col {
    padding: 0 5px;
  }

  .header {
    height: 55px;
  }

  .header-container {
    gap: 8px;
    padding: 0 10px;
  }

  .logo {
    height: 32px;
  }

  .btn-login,
  .btn-register {
    width: 90px;
    height: 32px;
  }

  .btn {
    font-size: 11px;
    height: 32px;
    clip-path: polygon(
      10px 0,
      100% 0,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      0 100%,
      0 10px
    );
    -webkit-clip-path: polygon(
      10px 0,
      100% 0,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      0 100%,
      0 10px
    );
  }

  .btn-text {
    font-size: 11px;
    height: 32px;
  }

  .btn-menu {
    width: 32px;
    height: 32px;
    display: none;
  }

  .menu-icon-wrapper {
    width: 18px;
    height: 18px;
  }

  .header-actions {
    gap: 6px;
  }

  .footer {
    padding: 20px 0;
  }

  .footer-container {
    padding: 0 15px;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-column {
    width: 100%;
    flex: 0 0 100%;
  }

  .footer-column-title {
    font-size: 14px;
    margin-bottom: 12px;
    height: auto;
  }

  .footer-column-content {
    font-size: 12px;
    line-height: 1.3em;
  }

  .footer-column-content a {
    margin-bottom: 5px;
  }

  .footer-social-icons {
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  .footer-social-icon {
    width: 32px;
    height: 32px;
  }

  .footer-copyright {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.4em;
  }

  .main {
    padding-top: 12px;
  }

  .main-container {
    gap: 12px;
  }

  .sidebar {
    min-height: auto;
  }

  .menu-item {
    height: 42px;
    margin: 0 10px;
  }

  .menu-item:first-child {
    margin-top: 10px;
  }

  .menu-text {
    font-size: 14px;
  }

  .menu-icon-left {
    width: 10px;
    margin-left: 16px;
    margin-right: 14px;
  }

  .menu-item-hot .menu-icon-left {
    width: 24px;
    height: 28px;
    margin-left: 8px;
    margin-right: 6px;
  }

  .submenu-item {
    padding: 10px 15px 10px 40px;
    font-size: 12px;
  }

  .slide-container {
    height: 280px;
  }

  .slide-dots {
    bottom: 12px;
    gap: 8px;
    left: 50%;
  }

  .slide-dot {
    width: 8px;
    height: 8px;
  }

  .promo-section {
    padding: 12px 0;
  }

  .promo-container {
    gap: 20px;
    padding: 0 10px;
  }

  .promo-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .promo-card {
    height: 100px;
  }

  .promo-card-text {
    font-size: 12px;
    padding-top: 22px;
    padding-left: 12px;
  }

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

  .promo-description {
    font-size: 11px;
    line-height: 1.4em;
  }

  .content-section {
    padding: 15px 0;
  }

  .content-container {
    padding: 0 10px;
  }

  .content-text {
    font-size: 11px;
    line-height: 1.4em;
  }

  .nc-logos-section {
    padding: 12px 0;
  }

  .nc-logos-container {
    padding: 0 10px;
  }

  .nc-logos {
    gap: 10px;
  }

  .nc-logo-item {
    width: 105px;
    height: 42px;
  }
}

@media (max-width: 360px) {
  .header {
    height: 50px;
  }

  .logo {
    height: 28px;
  }

  .btn-login,
  .btn-register {
    width: 75px;
    height: 28px;
  }

  .btn {
    font-size: 10px;
    height: 28px;
    clip-path: polygon(
      8px 0,
      100% 0,
      100% calc(100% - 8px),
      calc(100% - 8px) 100%,
      0 100%,
      0 8px
    );
    -webkit-clip-path: polygon(
      8px 0,
      100% 0,
      100% calc(100% - 8px),
      calc(100% - 8px) 100%,
      0 100%,
      0 8px
    );
  }

  .btn-text {
    font-size: 10px;
    height: 28px;
  }

  .btn-menu {
    width: 28px;
    height: 28px;
  }

  .menu-icon-wrapper {
    width: 16px;
    height: 16px;
  }

  .header-actions {
    gap: 5px;
  }

  .footer-container {
    padding: 0 10px;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .footer-column-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-column-content {
    font-size: 11px;
  }

  .footer-social-icons {
    gap: 8px;
  }

  .footer-social-icon {
    width: 28px;
    height: 28px;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .main {
    padding-top: 10px;
  }

  .main-container {
    gap: 10px;
  }

  .menu-item {
    height: 40px;
    margin: 0 8px;
  }

  .menu-item:first-child {
    margin-top: 8px;
  }

  .menu-text {
    font-size: 13px;
  }

  .menu-icon-left {
    width: 9px;
    margin-left: 14px;
    margin-right: 12px;
  }

  .menu-item-hot .menu-icon-left {
    width: 22px;
    height: 26px;
    margin-left: 7px;
    margin-right: 5px;
  }

  .submenu-item {
    padding: 8px 12px 8px 35px;
    font-size: 11px;
  }

  .slide-container {
    height: 220px;
  }

  .slide-dots {
    bottom: 10px;
    gap: 7px;
  }

  .slide-dot {
    width: 7px;
    height: 7px;
  }

  .promo-section {
    padding: 10px 0;
  }

  .promo-container {
    gap: 18px;
    padding: 0 10px;
  }

  .promo-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .promo-card {
    height: 90px;
  }

  .promo-card-text {
    font-size: 11px;
    padding-top: 20px;
    padding-left: 10px;
  }

  .promo-title {
    font-size: 18px;
  }

  .promo-description {
    font-size: 10px;
    line-height: 1.4em;
  }

  .content-section {
    padding: 12px 0;
  }

  .content-container {
    padding: 0 10px;
  }

  .content-text {
    font-size: 10px;
    line-height: 1.4em;
  }

  .nc-logos-section {
    padding: 10px 0;
  }

  .nc-logos-container {
    padding: 0 10px;
  }

  .nc-logos {
    gap: 8px;
  }

  .nc-logo-item {
    width: 95px;
    height: 38px;
  }
}
@media (max-width: 850px) {
  /* Switch to hamburger menu */
  .header-content {
    flex-direction: row;
    height: 70px;
    padding: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    height: 100%;
    overflow-y: auto;
  }

  /* Mobile Navigation Styles */
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #000;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: unset;
  }

  .nav.active {
    left: 0;
  }

  .nav-link {
    font-size: 18px;
    padding: 15px 0;
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .header-actions {
   
  }

  .hamburger {
    display: flex;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    margin-top: 70px;
  }

  /* Hero Section */
  .hero-logo img {
    width: 300px;
    height: auto;
  }

  .hero-title {
    font-size: 17px;
  }

  .hero-description {
    font-size: 11px;
  }

  /* Featured Section */
  .featured-card {
    height: 400px;
  }

  .featured-logo img {
    width: 85px;
  }

  .featured-title {
    font-size: 19px;
  }

  .featured-features {
    font-size: 9px;
  }

  /* Promotions */
  .promo-content h3 {
    font-size: 14px;
  }

  .promo-content h4 {
    font-size: 24px;
  }

  /* Guarantee Section */
  .guarantee-content h2 {
    font-size: 24px;
  }

  .guarantee-content p {
    font-size: 16px;
  }

  /* Footer responsive for small tablet */
  .footer {
    padding: 30px 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-logo-image {
    padding: 20px;
  }

  .footer-logo-image img {
    width: 180px;
    height: 60px;
  }

  .footer-columns {
    gap: 20px;
  }

  .footer-column h3 {
    font-size: 24px;
  }

  .footer-column ul li {
    font-size: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .social-icon img {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 768px) {
 

  .hero-logo img {
    width: 300px;
    height: auto;
  }.promo-mid, .promo-right{
      text-align: center;
  }

  .hero-title {
    font-size: 18px;
  }

  .hero-description {
    font-size: 12px;
  }

  .featured-card {
    height: 400px;
  }

  .promotions-column {
    height: auto;
  }

  .featured-left {
    height: 50%;

  }

  .featured-right {
    width:  100%;
    padding: 15px;
  }

  .featured-logo img {
    width: 80px;
  }

  .featured-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .featured-left img{
      height: 230px !important;
  }
.news-list .news-item{
    flex-direction: column;
}
.news-list .news-item img{
    min-width: unset !important;
     max-width: unset !important;
      height: ;: unset !important;
}
  .featured-features {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .featured-features p {
    margin-bottom: 6px;
  }

  .featured-buttons {
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100px;
    height: 35px;
    font-size: 13px;
  }

  .promo-grid {
    flex-direction: column;
    gap: 15px;
  }

  .promo-card {
    height: 100px;
  }

  .promo-content h3 {
    font-size: 14px;
  }

  .promo-content h4 {
    font-size: 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .footer-column h3 {
    font-size: 24px;
  }

  .footer-logo-image {
    padding: 20px;
  }

  .footer-logo-image img {
    width: 200px;
    height: 65px;
  }

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

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  .about-content {
    height: 350px;
    flex-direction: row;
  }

  ..about-text {
    height: 350px;
    font-size: 13px;
    flex: 1;
  }

  .about-divider {
    width: 6px;
    height: 100%;
  }

  .divider-accent {
    width: 100%;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* Hero Section */


  .hero-logo img {
    width: 250px;
    height: auto;
  }

  .hero-title {
    font-size: 16px;
  }

  .hero-description {
    font-size: 11px;
  }

  /* Featured Section */
  .featured-card {
    height: 350px;
  }

  .featured-logo img {
    width: 70px;
  }

  .featured-title {
    font-size: 16px;
  }

  .featured-features {
    font-size: 9px;
  }

  /* Promotions */
  .promo-content h3 {
    font-size: 13px;
  }

  .promo-content h4 {
    font-size: 22px;
  }

  /* Guarantee Section */
  .guarantee-content h2 {
    font-size: 20px;
  }

  .guarantee-content p {
    font-size: 14px;
  }

  .promotions-column {
    height: auto;
  }

  .featured-left {
    height: 45%;
  }

  .featured-right {
    
    padding: 12px;
    flex-direction: column;
  }
  .featured-stars{
      justify-content: center;
  }
  .featured-logo{
      text-align: center;
  }

  .featured-logo img {
    width: 150px;
  }

  .featured-title {
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
  }

  .featured-features {
    font-size: 9px;
    margin-bottom: 12px;
  }

  .featured-features p {
    margin-bottom: 5px;
    text-align: center;
    font-size: 13px;
  }

  .featured-buttons {
    gap: 8px;
  }

  .btn-primary,
  .btn-secondary {
    width: 90px;
    height: 30px;
    font-size: 11px;
  }

  .guarantee-content h2 {
    font-size: 20px;
  }

  .guarantee-content p {
    font-size: 14px;
  }

  .casino-item {
    height: auto;
    padding: 15px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .casino-number {
    font-size: 20px;
    width: 25px;
    height: 25px;
  }

  .casino-logo {
   
  }

  .casino-name {
    font-size: 20px;
    min-width: auto;
  }

  .casino-features {
    font-size: 12px;
    margin: 0;
    padding-left: 0;
  }

  .casino-stars img {
    width: 12px;
    height: 12px;
  }

  .casino-buttons {
    gap: 10px;
    flex-direction: row;
  }

  .casino-buttons .btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .footer-column h3 {
    font-size: 20px;
  }

  .footer-column ul li {
    font-size: 12px;
  }

  .footer {
    padding: 30px 0;
  }

  .footer-content {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-logo {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 0;
  }

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

  .footer-logo-image img {
    width: 160px;
    height: 50px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .social-icons {
    gap: 12px;
    justify-content: flex-start;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  .footer-columns {
    gap: 20px;
  }

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

  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-column-content {
    gap: 15px;
  }

  .footer-column ul {
    text-align: left;
  }

  .footer-column ul li {
    font-size: 14px;
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;

  }

  .about-content {
    height: 300px;
    flex-direction: row;
  }

  ..about-text {
    height: 300px;
    font-size: 12px;
    flex: 1;
  }

  .about-divider {
    width: 5px;
    height: 100%;
  }

  .divider-accent {
    width: 100%;
    height: 50px;
  }

  /* Mobile Navigation Styles for 480px */
  .header {
    height: 60px;
  }

  .header-content {
    height: 60px;
  }

  .nav {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .logo img {
    height: 35px;
  }

  .nav-list {
    padding: 30px 15px;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 0;
  }

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

/* ========================================
   NEWS PAGE SPECIFIC STYLES
   ======================================== */

/* News Page Specific Styles */
.featured-grid {
  display: grid;
  grid-template-columns:2fr 2fr;
  gap: 25px;


}
.featured-left img{
    height: 500px;
    object-fit: cover;
}
.main-content img{
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}
.featured-right img{
    min-height: 230px;
}
.news-list .news-item {
display: flex;
gap: 15px;
margin-bottom: 15px;

}
.news-list .news-item  img{
   min-width: 230px;
    height: 156px;
     max-width: 230px;
    
}
.featured-right article{
    margin-bottom: 20px;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.first-news .news-image{
    height: 430px;
}
.first-news .gr-meta{
    position: absolute;
    bottom: 25px;
    text-align: center;
    align-items: center;

    width: 100%;
}
.news-image {

}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
 
}

.news-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
 
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-content h3 a{
  font-size: 20px;
  font-weight: 700;
  color: #000;
 
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0 0;
  color:#C5C5C5;
}
.gr-meta{
        display: flex
;
    flex-direction: column;
    justify-content: center;
}

.news-date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #999999;
}.featured-content h3 a,.featured-content h2 a{
    color: #000;
   
}
.featured-content h3 ,.featured-content h2 {
    
    margin: 10px 0;
}
.news-content h2 a{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.news-content p{
    color: #000;
}

.news-icon {
  width: 16px;
  height: 16px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ff7e07;
  border-radius: 5px;
  color: #ff7e07;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
  background-color: #ff7e07;
  color: #ffffff;
}

.page-link.next,
.page-link.prev {
  width: 40px;
  height: 40px;
}

.page-link.next img,
.page-link.prev img {
  width: 16px;
  height: 16px;
}

.page-link.prev img {
  transform: rotate(180deg);
}
img{
    max-width: 100%;
}
/* ========================================
   DETAIL PAGE SPECIFIC STYLES
   ======================================== */

/* Detail Page Specific Styles */
.main-content {


  padding: 20px 0;
  background: #f5f5f5;

}

.breadcrumb {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}
.breadcrumb a{
    color: #000;
    font-weight: 700;
}
.first-news .news-item{

 


}
.news-item{

}

/* Article Styles */
.article {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
 margin-bottom: 20px;
  color: #000;
}

.article-header {
  
  padding-bottom: 20px;
 
}
.list-link a,.list-link li span{
    color: #000 !important;
    
}

.article-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: #2BAA50;

  line-height: 1.3;
}
.hero h1{
    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;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999999;
}

.article-icon {
  width: 16px;
  height: 16px;
}

/* Article Content */
.article-content {
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
 padding-bottom: 20px;
 border-bottom: 1px solid #D4D4D4;
}

.article-section {
  margin-bottom: 30px;
}

.article-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffcd9e;
}

.article-section p {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: justify;
}

/* Highlight Box */
.highlight-box {
  background-color: #fff6ed;
  border-left: 4px solid #ff7e07;
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ff7e07;
  margin-bottom: 15px;
}

.highlight-box p {
  font-size: 16px;
  color: #FF7E07;
  line-height: 1.6;
}

/* Blockquote */
.article-quote {
  background-color: #f8f9fa;
  border-left: 4px solid #ff7e07;
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.article-quote p {
  font-size: 18px;
  color: #FF7E07;
  margin-bottom: 15px;
  line-height: 1.6;
}

.article-quote cite {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}

/* Article Tags */
.article-tags {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #e9e9e9;
}

.article-tags h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ff7e07;
  margin-bottom: 15px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: #ff7e07;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background-color: #e46d00;
  transform: translateY(-2px);
}
.about-text{
    line-height: 1.5;
    max-height: 500px;
    overflow: scroll;
}
.about-text p,.about-text h2,.about-text h3,.about-text img{
    margin: 10px 0;
}
/* Article Actions */
.article-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9e9e9;
}

.article-actions .btn {
  flex: 1;
  max-width: 150px;
}

/* Main Layout */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.sidebar {


  border-radius: 10px;
  height: fit-content;
  overflow: hidden;
}
.hot-news-item {
    display: flex;
    gap: 20px;
    padding: 20px 20px 0 20px;
   
}
.hot-news-item:first-child{
    padding-top: 0;
}
.hot-news-item:last-child{
    padding-bottom: 0;
    border-bottom: 0;
}
.hot-news-image a{
    display: block;
    width: max-content;
}
.hot-news-date{
    font-size: 12px;
    color: #fff;
}
.hot-news-content h4 a{
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}
.hot-news-image a img{
    width: 121px;
    height: 79px;
    border-radius: 5px;
    object-fit: cover;
    
}
.sidebar-content {
  display: flex;
  flex-direction: column;
}

.hot-news {

}

.hot-news h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
  background: #00A854;
  padding: 10px 0;
}

/* Main Hot News */
.main-hot-news {
  margin-bottom: 20px;
}

.main-hot-news-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.main-hot-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-hot-news-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main-hot-news-content h4 a{
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.main-hot-news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-hot-news-date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.main-hot-news-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

/* Small Hot News List */
.small-hot-news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.small-hot-news-item {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0 20px;
  margin-bottom: 15px;
}

.small-hot-news-item:hover {
  transform: translateX(5px);
}

.small-hot-news-image {
  width: 122px;
  height: 79px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;

}

.small-hot-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.small-hot-news-content h5 {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.small-hot-news-content h5 a{
  font-size: 13px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Related News Section (Below Article) */
.related-news-section {


}

.related-news-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;

  margin-bottom: 35px;
}

.related-news-grid {
  display: grid;
  grid-template-columns:1fr;
  gap: 20px;
}

.related-news-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.single .related-news-item{
    background: transparent;
    padding: 0;
    box-shadow: none;
    display: flex;
    gap: 15px;
}.single .related-news-item img{
    max-width: 120px;
}

.related-news-item:hover {
  transform: translateY(-5px);
}

.related-news-image {
  width: 130px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.related-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-news-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-news-content h4 a{
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-news-date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.related-news-icon {
  width: 16px;
  height: 16px;
}

/* Animation for article content */
.article-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.article-section:nth-child(1) {
  animation-delay: 0.1s;
}
.article-section:nth-child(2) {
  animation-delay: 0.2s;
}
.article-section:nth-child(3) {
  animation-delay: 0.3s;
}
.article-section:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects */
.hot-news-item:hover,
.related-news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 126, 7, 0.2);
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 126, 7, 0.3);
}

/* Reading progress bar */
.article::before {
  content: "";
  position: fixed;
  top: 90px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #ff7e07;
  z-index: 1000;
  transition: width 0.3s ease;
}

/* Table of contents styles */
.article-content h2 {
  scroll-margin-top: 120px;
}

/* Animation for news items */
.news-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.news-item:nth-child(1) {
  animation-delay: 0.1s;
}
.news-item:nth-child(2) {
  animation-delay: 0.2s;
}
.news-item:nth-child(3) {
  animation-delay: 0.3s;
}
.news-item:nth-child(4) {
  animation-delay: 0.4s;
}
.news-item:nth-child(5) {
  animation-delay: 0.5s;
}
.news-item:nth-child(6) {
  animation-delay: 0.6s;
}
.news-item:nth-child(7) {
  animation-delay: 0.7s;
}
.news-item:nth-child(8) {
  animation-delay: 0.8s;
}
.news-item:nth-child(9) {
  animation-delay: 0.9s;
}
.news-item:nth-child(10) {
  animation-delay: 1s;
}
.news-item:nth-child(11) {
  animation-delay: 1.1s;
}
.news-item:nth-child(12) {
  animation-delay: 1.2s;
}

/* Hover effects */
.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 126, 7, 0.3);
}

.page-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 126, 7, 0.3);
}

/* Loading animation */
.news-item.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========================================
   RESPONSIVE DESIGN FOR NEWS & DETAIL PAGES
   ======================================== */

@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .sidebar {
    width: 280px;
  }

  .article {
    padding: 30px;
  }

  .article-header h1 {
    font-size: 28px;
  }

  .related-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
    .related-news-content h4 a{
        font-size: 14px;
    }
  .main-layout,.promotions {
    grid-template-columns: 1fr;
    gap: 30px;
  }.gift-content,.gift-content2 {
      flex-direction: column;
      gap: 45px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .hot-news {
    padding: 25px;
  }

  .main-hot-news-image {
    height: 180px;
  }

  .small-hot-news-image {
    width: 70px;
    height: 50px;
  }

  .article {
    padding: 25px;
  }

  .article-header h1 {
    font-size: 24px;
  }

  .article-section h2 {
    font-size: 20px;
  }

  .highlight-box,
  .article-quote {
    padding: 20px;
  }

  .highlight-box h3 {
    font-size: 18px;
  }

  .article-quote p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
    .first-news .news-item{
        flex-direction: column;
    }
  .main-content {
    padding: 20px 0;
  }

  .breadcrumb {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .main-layout {
    gap: 20px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

 

  .news-content {
   
  }

  .news-content h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }


  .news-date {
    font-size: 11px;
  }

  .news-icon {
    width: 14px;
    height: 14px;
  }

  .pagination {
    gap: 8px;
    margin-top: 30px;
  }

  .page-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .page-link.next,
  .page-link.prev {
    width: 35px;
    height: 35px;
  }

  .page-link.next img,
  .page-link.prev img {
    width: 14px;
    height: 14px;
  }

  .hot-news {
    padding: 20px;
  }

  .hot-news h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .main-hot-news-image {
    height: 160px;
  }

  .main-hot-news-content h4 {
    font-size: 14px;
  }

  .small-hot-news-image {
    width: 50px;
    height: 40px;
  }

  .small-hot-news-content h5 {
    font-size: 12px;
  }

  .article {
    padding: 20px;
    margin-bottom: 30px;
  }

  .related-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .related-news-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .related-news-section {
    padding: 40px 0;
  }

  .article-header {
 
  }

  .article-header h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .article-date {
    font-size: 12px;
  }

  .article-icon {
    width: 14px;
    height: 14px;
  }

  .article-section {
    margin-bottom: 25px;
  }

  .article-section h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .article-section p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .highlight-box,
  .article-quote {
    padding: 15px;
    margin: 20px 0;
  }

  .highlight-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .highlight-box p {
    font-size: 14px;
  }

  .article-quote p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .article-quote cite {
    font-size: 12px;
  }

  .article-tags {
    margin: 25px 0;
    padding: 15px 0;
  }

  .article-tags h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .tag {
    padding: 6px 12px;
    font-size: 12px;
  }

  .article-actions {
    gap: 10px;
    margin-top: 25px;
    padding-top: 15px;
  }

  .article-actions .btn {
    max-width: 120px;
    font-size: 14px;
    padding: 10px 15px;
  }

  .sidebar-content {
    flex-direction: column;
    gap: 25px;
  }

  .hot-news h3,
  .related-news h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .hot-news-item,
  .related-news-item {
    padding: 10px;
  }



  .hot-news-content h4,
  .related-news-content h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .hot-news-date {
    font-size: 10px;
  }

  .hot-news-icon {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 15px 0;
   
  }
  

  .breadcrumb {
    font-size: 11px;
    margin-bottom: 20px;
  }

  .news-grid {
    gap: 12px;
  }




  .news-content {
 
  }

  .news-content h3 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .news-date {
    font-size: 10px;
  }

  .news-icon {
    width: 12px;
    height: 12px;
  }

  .pagination {
    gap: 6px;
    margin-top: 25px;
  }

  .page-link {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .page-link.next,
  .page-link.prev {
    width: 30px;
    height: 30px;
  }

  .page-link.next img,
  .page-link.prev img {
    width: 12px;
    height: 12px;
  }

  .sidebar-content {
    gap: 20px;
  }

  .hot-news h3,
  .related-news h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hot-news-item,
  .related-news-item {
    padding: 8px;
  }

 

  .hot-news-content h4,
  .related-news-content h4 {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .hot-news-date {
    font-size: 9px;
  }

  .hot-news-icon {
    width: 10px;
    height: 10px;
  }

  .article {
    padding: 15px;
    margin-bottom: 20px;
  }

  .article-header {
 
  }

  .article-header h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .article-date {
    font-size: 11px;
  }

  .article-icon {
    width: 12px;
    height: 12px;
  }

  .article-section {
    margin-bottom: 20px;
  }

  .article-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .article-section p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .highlight-box,
  .article-quote {
    padding: 12px;
    margin: 15px 0;
  }

  .highlight-box h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .highlight-box p {
    font-size: 13px;
  }

  .article-quote p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .article-quote cite {
    font-size: 11px;
  }

  .article-tags {
    margin: 20px 0;
    padding: 12px 0;
  }

  .article-tags h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .tag {
    padding: 5px 10px;
    font-size: 11px;
  }

  .article-actions {
    gap: 8px;
    margin-top: 20px;
    padding-top: 12px;
  }

  .article-actions .btn {
    max-width: 100px;
    font-size: 12px;
    padding: 8px 12px;
  }
  .featured-grid{
      grid-template-columns: 1fr;
  }
  .nav-pc{
      display: none;
  }
}

