body {
    font-family: 'curator', "Helvetica Neue", Helvetica, Arial, sans-serif, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /* font-family: 'selane-st-semi-bold', ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; */
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* header-section */
.header-section {
    padding: 30px 50px;
    border-bottom: 0.5px solid #d6d6d6;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
}
.mobile-logo{
    height: 20px;
    width: auto;
    display: none;
}

.international {
    margin: 0;
    color: #161616;
    font-size: 18px;
    font-weight: 700;
}

.arrow-d {
    width: 15px;
    height: auto;
    padding-left: 5px;
}

.login {
    width: 25px;
    height: auto;
    padding-right: 10px;
}

.header-top-option {
    margin: 0;
    color: #161616;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.header-top-option:last-child {
    display: flex;
    align-items: center;
}
.header-top-option.menu{
    display: none;
}

.header-divider {
    width: 1px;
    height: 20px;
    background-color: #d6d6d6;
    /* light gray line */
}

.logo-section {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.logo {
    height: 48px;
    width: auto;
}

.gif {
    height: 55px;
    width: auto;
}

.star-section {
    font-size: 18px;
    margin: 0;
    color: #fff;
    font-weight: 600;
    background-color: #3368B2;
    padding: 10px 15px;
    border-radius: 5px;
}

.star {
    width: 15px;
    height: auto;
    padding-right: 10px;
}

.header-grid-bottom-category {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}


/* mini-head */
.mini-head-section {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: top 0.4s ease-in-out;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 30px 50px; /* same as .header-section */
  box-sizing: border-box; /* important to prevent padding overflow */
}


.mini-head-section.show {
  top: 0; /* slide into view */
}

.mini-head-logo{
    height: 30px;
    width: auto;
}


/* menu-bar */
.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%); /* Start offscreen */
  visibility: hidden;          /* Hide from screen readers */
  opacity: 0;                  /* Invisible */
  width: 350px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 1000;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s;
  padding: 30px 20px;
}

.menu-panel.active {
  transform: translateX(0);    /* Slide in */
  visibility: visible;
  opacity: 1;
}




.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  background: none;
  border: none;
  background-color: #161616;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}

.edition-section .label {
  font-size: 15px;
  color: #888;
  margin-bottom: 10px;
}
.label{
    margin-top: 0px;
}

.radio-group {
  display: flex;
  gap: 20px;
  font-weight: bold;
  font-size: 16px;
}

.radio-group input {
  margin-right: 5px;
}

.search-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  font-weight: bold;
  font-size: 18px;
}

.search-icon {
  font-size: 18px;
}



.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.arrow {
  font-size: 14px;
}


/* main-body */
.main-body {
    padding: 0px 50px;
}

.two-section {
    display: flex;
    gap: 15px;
}

.two-section-l {
    width: 75%;
}

.two-section-s {
    width: 25%;
}

.header-divider-h {
    width: 1px;
    background-color: #d6d6d6;
    height: auto;
    min-height: 100px;
    /* or adjust based on your layout */
    align-self: stretch;
    /* 👈 ensures full height inside flex container */
}

.two-grid-section {
    display: flex;
    gap: 30px;
    padding: 30px 0px;
}

.two-grid {
    width: 50%;
}

.card-deck-section {
    display: flex;
    gap: 15px;
}

.card-deck {
    width: 50%;
}

.img-wrap {
    width: auto;
    height: 150px;
    display: flex;
    align-items: center;
    /* vertically center */
    justify-content: center;
    /* horizontally center */
    overflow: hidden;
    /* crop image if needed */
}

.main-head {
    margin: 0;
    font-size: 36px;
    font-family: 'selane-st-semi-bold';
    font-weight: 700;
    padding-bottom: 15px;
}

.main-head a {
    color: #161616;
    text-decoration: none;
}


.mini-head-n {
    font-size: 20px;
    margin: 0;
    font-family: 'selane-st-semi-bold';
    padding-bottom: 10px;
    line-height: 1.8rem;
}

.mini-head-n a {
    color: #161616;
    text-decoration: none;
}



.mini-head-b {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    font-family: 'selane-st-semi-bold';
    padding-bottom: 10px;
    line-height: 1.6rem;
}

.mini-head-b a {
    color: #161616;
    text-decoration: none;
}



.topic {
    margin: 0;
    font-size: 20px;
    padding-bottom: 15px;
    font-weight: 400;
}

.topic a {
    color: #161616;
    text-decoration: none;
}


.main-img {
    width: 100%;
    height: auto;
}

.vertical-divider {
    height: 0.5px;
    width: 100%;
    background-color: #d6d6d6;
    align-self: stretch;
    /* ensures full height inside a flex container */
}

.vertical-divider-b {
    height: 2px;
    width: 100%;
    background-color: #d6d6d6;
    align-self: stretch;
    /* ensures full height inside a flex container */
}

.three-grid-section {
    display: flex;
    gap: 15px;
    padding: 30px 0px;
}

.three-grid {
    width: 33.33%;
}

.headlines-section {
    width: 100%;
    padding-top: 30px;
}

.headline-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 20px;
}

.headline-title a {
    color: #161616;
    text-decoration: none;
}



.headline-title span {
    font-size: 30px;
    font-weight: normal;
}

.headline-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.headline-list li {
    margin-bottom: 20px;
}

.headline-time {
    font-size: 18px;
    color: gray;
    margin: 0 0 5px 0;
}

.headline-time a {
    color: gray;
    text-decoration: none;
}

.headline-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 300px;
    /* Adjust as needed */
}

.tag {
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #c5c5c5;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.tag a {
    color: #000;
    text-decoration: none;
}




/* curosel-section */
.curosel-section {
    padding: 30px 0;
    position: relative;
}
.curosel-grid-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.curosel-grid-section {
  display: flex;
  transition: transform 0.4s ease;
  gap: 30px;
  will-change: transform;
}

.curosel-grid-section::before,
.curosel-grid-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    /* width of the fade */
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* clicks pass through */
}

.curosel-grid-section::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
}

.curosel-grid-section::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
}

.curosel-grid {
  flex: 0 0 calc((100% - 4 * 30px) / 5); /* 5 items + 4 gaps */
  height: 100%;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curosel-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
    /* allow clicks to pass through */
}

.timer {
    position: absolute;
    bottom: 10px;
    left: 10px;
    /* 👈 aligned to the left */
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    z-index: 2;
    padding: 5px 15px;
    border-radius: 4px;
}

.timer a {
    color: #fff;
    text-decoration: none;
}

.play {
    height: 15px;
    width: auto;
    padding-right: 5px;
}

.arrow-section {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 3;
}

.curosel-arrow {
    width: 20px;
    height: auto;
    background-color: #fff;
    padding: 15px;
    border: 0.1px solid #dedede;
    border-radius: 50%;
}

.curosel-arrow-l .curosel-arrow {
    transform: rotate(90deg);
    /* ⬅️ left */
}

/* Rotate right arrow */
.curosel-arrow-r .curosel-arrow {
    transform: rotate(-90deg);
    /* ➡️ right */
}

.section {
    padding: 30px 0px;
}

.two-section-s .vertical-divider {
    margin: 20px 0px;
}

.four-grid-section {
    display: flex;
    gap: 30px;
    align-items: stretch;
    /* ensures all columns are equal height */
}

.four-grid {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.profile-name {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.profile-name a {
    color: #3368B2;
    text-decoration: none;
}

.profile {
    background-color: #fff;
    border: 1px solid #c5c5c5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.ad-section {
    display: flex;
    justify-content: center;
    /* horizontal centering */
    align-items: center;
    /* optional: vertical centering */
    padding: 50px 0;
    /* optional: spacing around the ad */
}

.ad {
    width: auto;
    height: 250px;
}

.number-section {
    display: flex;
    gap: 30px;
    align-items: stretch;
    padding: 10px 0px;
}

.number-grid {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.number {
    font-size: 55px;
    font-weight: 900;
    margin: 0;
    font-family: 'selane-st-semi-bold';
}

.number a {
    color: #161616;
    text-decoration: none;
}

.mini-head {
    font-size: 20px;
    margin: 0;
    padding-bottom: 10px;
    line-height: 1.8rem;
}

.mini-head a {
    color: #161616;
    text-decoration: none;
}



/* footer */
.footer {
    background-color: #1a2951;
    padding: 50px 50px;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;

}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
}



.arrow-up {
    width: 25px;
    height: 25px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 0.1fr 1fr;
    gap: 0px;
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.5;
}


.subscription-section {
    text-align: right;
}

.subscription-text {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #fff;
    text-align: left;
}

.subscribe-btn {
    background-color: #4fd1c7;
    color: #1a2951;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 20px;
}


.app-preview {
    width: 500px;
    height: auto;
    margin-left: auto;
    display: block;
}

.app-downloads {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.app-store-btn {
    width: 140px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.footer-icon{
     width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
}
.footer-bottom a{
    color: #fff;
}
.logo-footer {
  height: 40px;
  filter: brightness(0) invert(1);
}
.white-divider {
  width: 100%;
  height: 0.5px;
  background-color: #ffffff;
  opacity: 0.6;
  margin: 30px 0px;
}
.white-vertical-divider {
  width: 0.5px;
  height: 100%; /* Set your desired height */
  border-left: 0.5px dashed #ffffff;
  opacity: 0.8; /* Optional: softens the color slightly */
}



/* Add these to your CSS */
.header-top-option a,
.international a,
.star-section a,
.menu-list a,
.search-label a,
.search-icon a,
.radio-group a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}



/* For the logo links */
.logo-section a {
    display: inline-block;
}

.footer p a {
    color: inherit;
    text-decoration: none;
}
