body {
    margin: 0;
    padding: 0;
    background-color: #F8F8F8;
    font-family: "Merriweather Sans", sans-serif;
}
a{
    text-decoration: none;
}
/* scroll-header */
.scroll-header {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 15px 0px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06); /* Updated shadow */
}


.scroll-header.visible {
  transform: translateY(0);
}

.scroll-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
.logo-round{
    height: 30px;
    width: auto;
}
.top-user{
    width: 20px;
    height: auto;
}
/* header-section */
.header-section {
    padding: 20px 0px;
    padding-bottom: 0;
}

.container {
    margin: 0 auto;
    width: 85%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #dadada;
}
.menu{
    width: 20px;
    height: auto;
    display: none;
}

.wether {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #333333;
    margin: 0;
}

.wether-icon {
    width: auto;
    height: 15px;
    padding-right: 5px;
}

.degre-count {
    font-size: 18px;
    font-weight: 600;
}

.play {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #333333;
    margin: 0;
}
.play a{
    color: #333333;
    display: flex;
    align-items: center;
}
.lotto {
    height: 35px;
    width: auto;
    padding-left: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.header-btn-section {
    display: flex;
    gap: 10px;
    align-items: center;
}

.subscribe {
    font-size: 10px;
    font-weight: 500;
    margin: 0;
    text-align: center;
    color: white;
    background-color: #006ED2;
    padding: 3px 10px;
    border-radius: 3px;
}
.subscribe a{
    color: white;
}

.sale {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.sign-in {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: #006ED2;
    padding: 8px 10px;
    border: 2px solid #006ED2;
    border-radius: 3px;
    display: flex;
    align-items: center;
}
.sign-in a{
    color: #006ED2;
}

.user {
    width: 15px;
    height: auto;
    padding-left: 5px;
}

.search {
    width: 15px;
    height: auto;
}

.papper-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
}

.papper {
    margin: 0;
    font-size: 12px;
    font-weight: 600
}
.papper a{
    color: #333;
}

.canada {
    height: 15px;
    width: auto;
}

.header-mid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0px;
}

.cateagorys {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #595959;
    cursor: pointer;
}
.cateagorys a{
    color: #595959;
}
/* Common underline animation */
.cateagorys,
.header-bottom-cateagorys {
  position: relative;
  display: inline-block;
}

.cateagorys::after,
.header-bottom-cateagorys::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #006ED2; /* blue */
  transition: all 0.3s ease;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.cateagorys:hover::after,
.header-bottom-cateagorys:hover::after {
  width: 100%;
  transform: translateX(-50%) scaleX(1);
}

.header-bottom {
    display: flex;
    gap: 15px;
    padding: 10px 120px;
    background-color: #ECEBEC;
    border-bottom: 1px solid #dadada;
}

.header-bottom-cateagorys {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}
.header-bottom-cateagorys a{
    color: #333;
}
.dot {
    color: #333;
}


/* content-container */
.content-container {
    margin: 0 auto;
    width: 80%;
      display: flex;
  flex-direction: column;
  height: 100%; /* Ensures full usage of parent height */
}


.content-section {
    display: flex;
    gap: 20px;
    padding: 20px 0px;
    align-items: stretch;

  flex: 1; /* Fills full height */
}

.content-section-l {
    width: 75%;
}
.content-section-l.b{
    width: 100%;
}

.content-section-s {
    width: 25%;
     display: flex;
  flex-direction: column;
}
.content-section-s {
  position: sticky;
  top: 20px; /* or height of your fixed header if any */
  align-self: flex-start;
  height: fit-content;
}
.content-section-large {
  border: 0.5px solid #d3d3d3;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: #fff;
  padding: 10px 15px;
  margin-bottom: 20px; /* 👈 Add spacing between the two blocks */
}

.content-section-large:last-child {
  margin-bottom: 0; /* 👈 Optional: remove extra space after the last one */
}

.content-section-small{
    border: 0.5px solid #d3d3d3;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: #fff;
    padding: 10px 15px;
}
.detail-content-section-small{
    border: 0.5px solid #d3d3d3;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: #fff;
    padding: 10px 15px;
    height: 100%;
}
.ad-section{
   height: 100%;
    background-color: #ECEBEC;
    margin-top: 0px;
     padding: 10px 15px;
}
.ad-section.b{
   height: auto;
    background-color: #ECEBEC;
    margin-top: 0px;
     padding: 10px 15px;
}
.four-grid-section {
  display: flex;
  gap: 5px;
  position: relative;
  padding: 10px 0px;
}
.four-grid-section-s {
  width: 30%;
  border-right: 1px solid #ccc;
  padding-right: 15px;
}

.four-grid-section-l {
  width: 70%;
  padding-left: 15px;
}

.four-grid-section-s .box {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0px;
}
.four-grid-section-s .box:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.note {
    font-size: 10px;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    color: #686868;
    padding-bottom: 10px;
}
.note-r {
    font-size: 10px;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    color: #B40404;
    padding-bottom: 10px;
}

.main-head-b {
    color: #333;
    font-family: "Frank Ruhl Libre", serif;
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4rem;
    padding-bottom: 10px;
}

.time {
    color: #595959;
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.message {
    width: 12px;
    height: auto;
    padding-left: 5px;
}

.main-head-n {
    color: #333;
    font-family: "Frank Ruhl Libre", serif;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4rem;
    padding-bottom: 10px;
}

.main-img {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    border-radius: 4px;
}

.main-head {
    color: #333;
    font-family: "Frank Ruhl Libre", serif;
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.8rem;
    padding-bottom: 10px;
}

.para {
    color: #595959;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    padding-bottom: 10px;
}
.three-grid-section{
    display: flex;
    gap: 5px;
}
.three-grid-section .box {
  width: 33.33%;
  border-right: 1px solid #e0e0e0;
}

.five-grid-section{
      padding: 10px 0px;
      display: flex;
      gap: 5px;
}
.five-grid-section-l{
    width: 66.66%;

}
.five-grid-section-detail{
    width: 100%;
}
.five-grid-section-l .inside-two-grid {
  padding-bottom: 20px;
  margin-bottom: 20px;
}



.five-grid-section-s{
    width: 33.33%;
}
.inside-two-grid{
    display: flex;
    gap: 5px;
}
.inside-two-grid .box {
  width: 50%;
  border-right: 1px solid #e0e0e0;
}
.opinion-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.opinion{
    margin: 0;
text-transform: capitalize;
color: #333;
font-size: 20px;
font-weight: 600;
}
.arrow-wrapper {
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.opinion-section:hover .arrow-wrapper {
  background-color: #b1b1b1; /* blue */
}

.arrow {
  width: 18px;
  height: auto;
  display: block;
}
.divider {
  height: 2px;
  background-color: #333; /* or any color */
  width: 100%;
  margin: 10px 0;
}
.profile-grid {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd; /* light gray line */
}

.profile-grid:last-child {
  border-bottom: none;
}

.profile-grid-img{
    width: 25%;
}
.profile-grid-content{
    width: 75%;
}
.profile-img{
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
}
.detail-img{
    width: 100%;
    height: auto;
    border-radius: 20%;
    border: 1px solid #e0e0e0;
}
.para-profile {
    color: #595959;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    padding-bottom: 3px;
    font-family: "Frank Ruhl Libre", serif;
}
.detail-para-profile {
    color: #595959;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    padding-bottom: 3px;
    font-family: "Frank Ruhl Libre", serif;
}
.profile-grid-content .note{
    padding-bottom: 3px;
}
.profile-grid-content .time{
    padding-bottom: 3px;
    font-size: 12px;
    font-family: "Frank Ruhl Libre", serif;
}
.sponsor-btn {
    display: inline-block; /* 👈 Prevents full-width block behavior */
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    color: #333;
    border: 1px solid #333;
    padding: 3px 5px;
    border-radius: 3px;
    margin-bottom: 10px;
}
.six-part-section{
    display: flex;
    gap: 20px;
}
.six-part-section div{
width: 50%;
}
.box.b{
    width: 50%;
}
.divider-line {
    height: 0.5px;
    background-color: #e0e0e0; /* Light gray */
    margin: 25px 0; /* Spacing above and below */
    width: 100%;
}
.divider-line.b{
    height: 0.5px;
    background-color: #e0e0e0; /* Light gray */
    margin: 5px 0; /* Spacing above and below */
    width: 100%;
}

.vertical-line {
  width: 0.5px;
  background-color: #e0e0e0;
  margin: 0 5px; /* Adjust spacing as needed */
}

.header-top,
.header-bottom,
.four-grid-section-s,
.three-grid-section .box,
.five-grid-section-l,
.inside-two-grid .box,
.profile-grid,
.content-section-large,
.content-section-small,
.box {
    border: none !important;
    border-bottom: none !important;
    border-right: none !important;
}
.bottom-para{
    font-size: 12px;
    margin: 0;
    color: #333;
    font-weight: 700;
    padding: 10px 0px;
    padding-bottom: 0;
}

/* footer */

.footer-section {
  background-color: #2d2d2d;
  color: #fff;
  padding: 40px 60px;
}

.footer-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;        /* Set a max width */
  margin: 0 auto;           /* Center horizontally */
}

.footer-logo-column {
  flex: 0 0 auto;
}

.footer-logo {
  width: 40px;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.footer-column {
  min-width: 200px;
}

.footer-column h4 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 0;
}

.footer-column ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  color: #007aff;           /* Sets bullet color */
}

.footer-column ul li {
  font-size: 14px;
  color: #c5c5c5;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-column ul li::marker {
  color: #007aff; /* Blue bullet color */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}


.social-icons img,
.store-buttons img {
  height: 30px;
  margin-right: 10px;
  cursor: pointer;
}

.store-buttons img:last-child {
  margin-right: 0;
}
.footer-copyright {
  background-color: #1e1e1e;
  color: #c5c5c5;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-copyright p {
  margin: 5px 0;
}

.footer-links a {
  color: #c5c5c5;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}




.footer-section.b{
display: none;
}
.footer-toggle {
  cursor: pointer;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.footer-toggle::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.footer-toggle.active::after {
  transform: rotate(180deg);
}

.footer-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.footer-menu.open {
  max-height: 1000px;
}


/* side-menu */
.side-menu-overlay {
  width: 100%;
  max-width: 375px;
  height: 100vh;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}
.side-menu-overlay {
  transform: translateX(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.side-menu-overlay.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007bff;
  padding: 10px 20px;
}

.close-btn {
  font-size: 20px;
  background: none;
  border: none;
  color: #fff;
  background-color: #007bff;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
}

.login-link {
  color: #fff;
  background-color: #007bff;
  padding: 6px 12px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
}

.canadian-tag {
  margin-top: 15px;
  font-size: 13px;
  font-weight: bold;
  padding: 0px 20px;
}

.weather-section {
  margin-top: 10px;
  font-size: 14px;
  padding: 0px 20px;
}

.weather-icon {
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

.lotto-text {
  font-size: 13px;
  color: #006ED2;
  font-weight: 600;
}
.lotto-text a{
    color: #006ED2;
}
.lotto-img {
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
}

.search-box {
  display: flex;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  margin: 20px 20px;
}

.search-box input {
  border: none;
  flex: 1;
  padding: 8px;
  font-size: 14px;
}

.clear-btn {
  border: none;
  background: #f0f0f0;
  padding: 0 10px;
  font-size: 16px;
  cursor: pointer;
}

.quick-links {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  margin-bottom: 15px;
  padding: 0px 20px;
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #333;
}
.quick-link a{
    color: #333;
    display: flex;
  flex-direction: column;
  align-items: center;
}
.quick-link img {
  height: 24px;
  margin-bottom: 5px;
}

.main-links {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0px 20px;
}

.main-links li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.main-links li a{
    color: #333;
}

.main-links li.has-submenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  font-size: 12px;
}











/* a-tag */
/* Footer link styling */
.footer-section a,
.footer-copyright a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover{
  color: #006ED2; /* Or your preferred hover color */
  text-decoration: underline;
}
/* Content link styling */
.content-section a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}


/* Maintain heading styles */
.main-head-b a,
.main-head-n a,
.main-head a {
  display: block;
  color: inherit;
}

/* Keep note styling */
.note a,
.note-r a {
  color: inherit;
  text-transform: uppercase;
  font-weight: 800;
}

/* Time styling */
.time a {
  color: #595959;
  display: flex;
  align-items: center;
}

/* Sponsor button styling */
.sponsor-btn a {
  display: inline-block;
  color: #333;
  
  padding: 3px 5px;
  border-radius: 3px;
  margin-bottom: 0px;
  font-size: 10px;
  font-weight: 800;
}


/* Keep copyright text styling */
.footer-copyright p a {
  color: #666;
}

.footer-copyright p a:hover {
  color: #333;
}

/* Social icons container */
.social-icons a,
.store-buttons a {
  display: inline-block;
  margin: 0 5px;
}