 :root {
   --ti-blue-1: #1DA1F2;
   --ti-blue-2: #24243e;
   --ti-blue-3: #063a6b;
   --ti-blue-top: #1DA1F2;
 }

 * {
   box-sizing: border-box
 }

 body {
   font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
   margin: 0;
 }

 /* ---------- Header ---------- */
 .ti-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1050;
   padding: 14px 24px;
   transition: all .25s ease;
 }

 .ti-header.scrolled {
   background: var(--ti-blue-2);
   box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
 }

 /* ---------- Logo ---------- */
 .ti-logo {
   border: 2px solid #fff;
   padding: 4px 6px;
   font-weight: 800;
   letter-spacing: 1px;
   font-size: 14px;
   display: inline-flex;
   align-items: center;
   gap: 4px;
   color: #fff;
   text-decoration: none;
   line-height: 1;
   white-space: nowrap;
 }

 .ti-logo .in {
   background: #1aa9e0;
   color: #fff;
   padding: 2px 4px;
   border-radius: 2px;
 }

 /* ---------- Listen Button ---------- */
 .btn-listen {
   background: #fff;
   color: #111;
   font-weight: 700;
   border: 0;
   padding: 10px 22px;
   border-radius: 4px;
   font-size: 14px;
   transition: .2s ease;
 }

 .btn-listen:hover {
   transform: translateY(-1px);
   box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
   color: #111;
 }

 /* ---------- Desktop Nav ---------- */
 .ti-nav {
   display: flex;
   gap: 24px;
   align-items: center;
 }

 .navbar-expand-lg .navbar-nav {
   gap: 20px;
 }

 .ti-nav .nav-item>a {
   color: #fff;
   text-decoration: none;
   font-weight: 600;
   font-size: 14px;
   opacity: .95;
   transition: .2s;
   white-space: nowrap;
   padding: 10px 0 !important;
 }

 .ti-nav .dropdown-menu .dropdown-item {
   color: #000;
   text-decoration: none;
   font-weight: 600;
   font-size: 14px;
   opacity: .95;
   transition: .2s;
   white-space: nowrap;
 }

 .ti-nav a:hover {
   opacity: 1;
 }

 .navbar-nav .nav-link:focus,
 .navbar-nav .nav-link:hover {
   border-bottom: 1px solid #fff;
   text-decoration: none;
   color: #ffffff;
 }

 .navbar-nav .nav-link.active,
 .navbar-nav .nav-link.show {
   border-bottom: 1px solid #fff;
   text-decoration: none;
   color: #ffffff;
 }



 /* ---------- Auth ---------- */
 .ti-auth {
   display: flex;
   gap: 22px;
   align-items: center;
 }

 .ti-auth a {
   color: #fff;
   text-decoration: none;
   font-weight: 600;
   font-size: 14px;
 }

 .ti-auth a:hover {
   text-decoration: underline;
 }

 /* ---------- Mobile Button ---------- */
 .ti-menu-btn {
   background: none;
   border: none;
   color: #fff;
   font-size: 28px;
   line-height: 1;
   padding: 0;
 }

 /* ---------- Mobile Menu ---------- */
 .ti-mobile-menu {
   background: #061f31;
   color: #fff;
   width: 300px;
 }

 .mobile-nav {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .mobile-nav a {
   color: #fff;
   text-decoration: none;
   font-size: 16px;
   font-weight: 600;
 }

 .mobile-auth {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 32px;
 }

 .mobile-auth a {
   color: #fff;
   text-decoration: none;
   font-weight: 600;
 }

 /* ---------- Hero ---------- */
 .ti-hero {
   position: relative;
   overflow: hidden;
   padding: 160px 16px 140px;
   text-align: center;
   z-index: 1;
 }

 .bg-fixed {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   object-fit: cover;
   height: auto;
   margin: 0 auto;
   z-index: -1;
 }

 /* Stair-step decorative shapes */
 .stairs {
   position: absolute;
   inset: 0;
   pointer-events: none;
   opacity: .55
 }

 .stairs span {
   position: absolute;
   background: rgba(255, 255, 255, .06);
   border-radius: 2px;
 }

 .stairs span:nth-child(1) {
   left: 0;
   bottom: 0;
   width: 18%;
   height: 55%
 }

 .stairs span:nth-child(2) {
   left: 14%;
   bottom: 0;
   width: 18%;
   height: 42%
 }

 .stairs span:nth-child(3) {
   left: 28%;
   bottom: 0;
   width: 20%;
   height: 30%
 }

 .stairs span:nth-child(4) {
   right: 0;
   bottom: 0;
   width: 22%;
   height: 60%
 }

 .stairs span:nth-child(5) {
   right: 18%;
   bottom: 0;
   width: 18%;
   height: 45%
 }

 .stairs span:nth-child(6) {
   right: 34%;
   bottom: 0;
   width: 16%;
   height: 32%
 }

  .hero-art {
   position: relative;
   z-index: 2;
   max-width: 540px;
   width: 100%;
   height: auto;
   margin: 0 auto 36px;
   filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .35));
 }

 .hero-cta {
   position: relative;
   z-index: 2;
   background: #fff;
   color: #111;
   border: 0;
   font-weight: 700;
   padding: 14px 38px;
   border-radius: 2px;
   font-size: 15px;
   transition: transform .15s ease, box-shadow .15s ease;
 }

 .hero-cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
   color: #111;
 }

 /* ---------- Search bar overlap ---------- */
 .search-wrap {
   position: relative;
   margin-top: -44px;
   z-index: 5;
   padding: 0 16px 80px;
 }

 .search-box {
   max-width: 1100px;
   margin: 0 auto;
   background: #fff;
   border-radius: 4px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
   display: flex;
   align-items: center;
   padding: 18px 26px;
 }

 .search-box svg {
   flex-shrink: 0;
   color: #222
 }

 .search-box input {
   border: 0;
   outline: 0;
   width: 100%;
   margin-left: 14px;
   font-size: 16px;
   color: #222;
   background: transparent;
 }

 .search-box input::placeholder {
   color: #888
 }




 .ti-hero-section {
   padding: 50px 20px;
 }

 .ti-hero-content {
   max-width: 980px;
   margin: auto;
 }

 .ti-hero-title {
   color: #081b4b;
   font-size: 32px;
   line-height: 1.28;
   font-weight: 400;
   margin-bottom: 48px;
 }

 .ti-hero-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 160px;
   height: 48px;
   padding: 0 32px;
   background: #1b214f;
   color: #fff;
   text-decoration: none;
   font-size: 20px;
   font-weight: 600;
   border-radius: 2px;
   transition: .25s ease;
 }

 .ti-hero-btn:hover {
   background: #111842;
   color: #fff;
   transform: translateY(-2px);
 }

 /* ---------- Responsive ---------- */



 /* ---------- Content sections ---------- */
 .section {
   max-width: 1180px;
   margin: 0 auto;
   padding: 40px 24px 80px;
   color: #1a1a1a;
 }

 .section h2 {
   font-weight: 700;
   font-size: 26px;
   margin-bottom: 24px;
 }

 .cat-card {
   background: #fff;
   border-radius: 8px;
   padding: 28px 22px;
   box-shadow: 0 4px 14px rgba(10, 30, 60, .06);
   transition: transform .2s ease, box-shadow .2s ease;
   height: 100%;
 }

 .cat-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 26px rgba(10, 30, 60, .12);
 }

 .cat-card h5 {
   font-weight: 700;
   margin: 0 0 8px
 }

 .cat-card p {
   color: #5a6675;
   margin: 0;
   font-size: 14px
 }

 .cat-icon {
   width: 46px;
   height: 46px;
   border-radius: 10px;
   background: linear-gradient(135deg, var(--ti-blue-1), var(--ti-blue-2));
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   margin-bottom: 14px;
   font-weight: 700;
 }

 /* ---------- Showcase (sticky right menu) ---------- */
 .showcase {
   max-width: 1180px;
   margin: 0 auto;
   padding: 60px 24px 80px;
   color: #0a1f3a;
 }

 .showcase-row {
   display: grid;
   grid-template-columns: 1.15fr .85fr;
   gap: 60px;
   align-items: flex-start;
 }

 .showcase-left {
   display: flex;
   flex-direction: column;
   gap: 60px
 }

 .showcase-panel {
   min-height: 85vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 30px 10px;
 }

 .logo-collage {
   position: relative;
   width: 100%;
   padding-top: 120%;
 }

 .logo-tile {
   position: absolute;
   border-radius: 4px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 800;
   text-align: center;
   box-shadow: 0 8px 22px rgba(10, 30, 60, .18);
   overflow: hidden;
   padding: 0px;
   line-height: 1.05;
 }

 .logo-tile img {
   width: 100%;
   height: auto;
 }

 /* News collage */
 .news .t1 {
   left: 0;
   top: 0;
   width: 46%;
   background: #cc0000;
   font-size: 54px;
   letter-spacing: -2px
 }

 .news .t2 {
   left: 50%;
   top: 10%;
   width: 32%;
   background: #0a2455;
   font-size: 30px
 }

 .news .t3 {
   left: 50%;
   top: 40%;
   width: 36%;
   background: #1463ff;
   font-size: 26px
 }

 .news .t4 {
   left: 16%;
   top: 60%;
   width: 30%;
   background: #1a3a7a;
   font-size: 18px
 }

 /* Sports collage */
 .sports .t1 {
   left: 0;
   top: 0;
   width: 46%;
   background: #3e6b1f;
   font-size: 24px;
   background-image: linear-gradient(135deg, #4a7d24, #2c4f15)
 }

 .sports .t2 {
   left: 50%;
   top: 9%;
   width: 30%;
   background: #fff;
   color: #222;
   font-size: 18px;
   border: 1px solid #eee
 }

 .sports .t3 {
   left: 50%;
   top: 38%;
   width: 46%;
   background: #222;
   font-size: 22px
 }

 .sports .t4 {
   left: 12%;
   top: 61%;
   width: 34%;
   background: #0a0a0a;
   font-size: 18px
 }

 /* Music collage */
 .music .t1 {
   left: 16%;
   top: 12%;
   width: 30%;
   font-size: 20px
 }

 .music .t2 {
   left: 2%;
   top: 40%;
   width: 44%;
   font-size: 22px
 }

 .music .t3 {
   left: 50%;
   top: 0;
   width: 46%;
   font-size: 32px
 }

 .music .t4 {
   left: 50%;
   top: 61%;
   width: 28%;
 }

 /* Audiobooks collage */
 .audio .t1 {
   left: 4%;
   top: 0;
   width: 42%;
   /* height:54%; */
   /* background:#e8e2d4; */
   color: #222;
   font-size: 16px
 }

 .audio .t2 {
   left: 50%;
   top: 10%;
   width: 34%;
   /* height:44%; */
   background: #f5ebd8;
   color: #222;
   font-size: 18px
 }

 .audio .t3 {
   left: 50%;
   top: 43%;
   width: 38%;
   font-size: 22px
 }

 .audio .t4 {
   left: 20%;
   top: 56%;
   width: 26%;
   font-size: 16px
 }

 /* Podcasts collage */
 .pod .t1 {
   left: 6%;
   top: 14%;
   width: 32%;
   height: 32%;
   background: #cc0000;
   font-size: 16px
 }

 .pod .t2 {
   left: 42%;
   top: 0;
   width: 42%;
   font-size: 30px
 }

 .pod .t3 {
   left: 6%;
   top: 50%;
   width: 36%;
   height: 44%;
   background: #f5f5f5;
   color: #c43a3a;
   font-size: 18px;
   border: 1px solid #ddd
 }

 .pod .t4 {
   left: 46%;
   top: 64%;
   width: 34%;
   height: 32%;
   background: #0a2455;
   font-size: 18px
 }

 .showcase-right {
   position: sticky;
   top: 0px;
   align-self: start;
 }

 .showcase-menu-wrapper {

   min-height: 85vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding-top: 100px;
 }

 .showcase-menu {
   list-style: none;
   margin: 0;
   padding: 0;
 }

 .showcase-menu li {
   font-weight: 800;
   font-size: 32px;
   color: #cfd4dc;
   margin-bottom: 14px;
   transition: color .3s ease;
   cursor: pointer;
 }

 .related-box {
   display: none;
 }

 .related-box.active {
   display: block;
 }

 .showcase-menu li.active {
   color: #0a1f3a
 }

 .showcase-desc {
   margin-top: 22px;
   color: #3a4555;
   font-size: 15px;
   line-height: 1.55;
   max-width: 420px;
 }

 .showcase-desc p {
   /* display:none; */
   margin: 0 0 14px
 }

 .showcase-desc p.active {
   display: block
 }

 .listen-link {
   color: #0a1f3a;
   font-weight: 700;
   text-decoration: none;
   font-size: 14px;
 }

 .listen-link::before {
   content: "▶  ";
   font-size: 11px
 }

 .listen-link:hover {
   text-decoration: underline;
   color: #0a1f3a
 }


 footer {
   background: #0a2540;
   color: #cfd8e3;
   padding: 34px 24px;
   font-size: 14px;
 }

 /* ---------- Listen Everywhere ---------- */
 .everywhere {
   padding: 60px 24px 80px;
 }

 .ew-art {
   display: flex;
   align-items: flex-end;
   justify-content: center;
   gap: 18px;
   min-height: 360px;
 }

 .speaker {
   border-radius: 14px;
   background: linear-gradient(180deg, #f3f3f3, #d8d8d8);
   box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #888;
   font-weight: 700;
   font-size: 12px;
   letter-spacing: 2px;
   position: relative;
 }

 .sp1 {
   width: 130px;
   height: 200px
 }

 .sp2 {
   width: 140px;
   height: 260px;
   background: linear-gradient(180deg, #e8e8e8, #bfbfbf)
 }

 .sp2::before {
   content: "";
   position: absolute;
   top: 18px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: #1a1a1a;
   box-shadow: inset 0 0 0 3px #4a90e2
 }

 .sp3 {
   width: 110px;
   height: 110px;
   border-radius: 50%
 }

 .phone {
   width: 90px;
   height: 170px;
   border-radius: 18px;
   background: #0a0a0a;
   box-shadow: 0 16px 30px rgba(0, 0, 0, .25);
   border: 3px solid #1a1a1a;
   background-image: linear-gradient(135deg, #2bb6ea, #0c6cae);
   background-clip: content-box;
   padding: 6px;
   position: relative;
 }

 .ew-text h2 {
   font-weight: 800;
   font-size: 42px;
   margin: 0 0 18px;
   line-height: 1.2;
 }

 .ew-text h2 span {
   color: #1aa9e0
 }

 .ew-text p {
   color: #3a4555;
   font-size: 18px;
   line-height: 1.6;
   max-width: 520px;
   margin: 0 0 24px
 }

 .store-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: #0a0a0a;
   color: #fff;
   padding: 10px 18px;
   border-radius: 6px;
   text-decoration: none;
   font-weight: 600;
   font-size: 13px;
   margin-right: 10px;
   margin-bottom: 10px;
   transition: transform .15s ease;
 }

 .store-btn:hover {
   transform: translateY(-2px);
   color: #fff
 }

 .store-btn small {
   display: block;
   font-size: 10px;
   font-weight: 400;
   opacity: .85
 }

 .store-btn b {
   font-size: 15px;
   line-height: 1
 }

 /* ---------- Discover More ---------- */
 .discover {
   padding: 70px 0px 0px;
 }

 .discover-inner {
   margin: 0 auto;
   position: relative;
   top: -60px;
 }

 .discover h2 {
   font-weight: 800;
   font-size: 38px;
   line-height: 1.2;
   margin: 0 0 14px;
 }

 .discover h2 .accent {
   color: #1ec9b0;
   display: block
 }

 .discover-lede {
   color: #2f2f2f;
   max-width: 660px;
   font-size: 18px;
   line-height: 1.55;
   margin: 0 0 36px
 }

 .discover-grid {
   display: grid;
   grid-template-columns: repeat(8, 1fr);
   gap: 14px;
 }

 .d-tile {
   aspect-ratio: 1/1;
   border-radius: 4px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 800;
   text-align: center;
   font-size: 14px;
   line-height: 1.05;
   padding: 0;
   overflow: hidden;
 }

 .d-tile.wide {
   grid-column: span 2;
   height: 135px;
   /* custom */
   aspect-ratio: unset;
 }

 .discover-cta {
   text-align: center;
   margin-top: 48px;
 }

 .discover-cta p {
   color: #fff;
   margin: 0 0 30px;
   font-size: 24px;
 }

 .discover-cta button {
   background: #fff;
   color: #0a1f3a;
   border: 0;
   font-weight: 700;
   padding: 12px 38px;
   border-radius: 3px;
   transition: transform .15s ease, box-shadow .15s ease;
 }

 .discover-cta button:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 22px rgba(0, 0, 0, .3)
 }


 .discover-grid .d-tile img {
   width: 100%;
   height: auto;
 }

 .discover-wrapper {
   background-color: #0a1f3a;
   margin-top: 100px;
 }

 /* ---------- Site Footer ---------- */
 .site-foot {
   background: #0a1f3a;
   color: #cfd8e6;
   padding: 50px 24px 40px;
   border-top: 1px solid rgba(255, 255, 255, .08);
 }

 .foot-inner {
   max-width: 1180px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 2.4fr repeat(4, 1fr);
   gap: 40px;
 }

 .foot-brand .logo-mark {
   display: inline-flex;
   align-items: center;
   border: 2px solid #fff;
   color: #fff;
   font-weight: 800;
   padding: 6px 10px;
   letter-spacing: 1px;
 }

 .foot-brand .logo-mark .in {
   background: #1ec9b0;
   color: #0a1f3a;
   padding: 2px 6px;
   margin-left: 4px;
 }

 .foot-brand p {
   margin-top: 18px;
   max-width: 240px;
   font-size: 14px;
   line-height: 1.55;
   color: #aebbcc
 }

 .foot-col h6 {
   color: #fff;
   font-weight: 700;
   font-size: 15px;
   margin: 0 0 16px;
 }

 .foot-col a {
   display: block;
   color: #cfd8e6;
   text-decoration: none;
   font-size: 14px;
   padding: 6px 0;
 }

 .foot-col a:hover {
   color: #1ec9b0
 }

 .foot-bottom {
   max-width: 1180px;
   margin: 34px auto 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 16px;
   color: #aebbcc;
   font-size: 13px;
 }

 .foot-links a {
   color: #cfd8e6;
   text-decoration: none;
   margin-right: 18px
 }

 .foot-links a:hover {
   color: #1ec9b0
 }

 .foot-social {
   display: flex;
   gap: 18px
 }

 .foot-social a {
   color: #fff;
   text-decoration: none;
   font-size: 18px
 }


 .img-box {
   display: inline-flex;
 }

 .img-box img {
   width: 100%;
   height: auto;
   border-radius: 4px;
 }

 .w-60-per {
   width: 60%;
 }

 .pt-30per {
   padding-top: 30%;
 }


.ti-logo .logoimg {
    max-width: 124px;
}
.logo-mark .logoimg {
    max-width: 200px;
}



.related-box-mobile{
  margin-top: 24px;
}
.related-box-mobile h2 {
    font-weight: 700;
    font-size: 24px;
}
 /* ---------- Responsive ---------- */




 @media (max-width:1199px) {

   .ti-hero-title {
     font-size: 46px;
   }
 }

 @media (max-width:991px) {
   .ti-header {
     padding: 14px 18px;
   }

   .ti-hero-section {
     padding: 60px 20px 80px;
   }

   .ti-hero-title {
     font-size: 38px;
     line-height: 1.35;
     margin-bottom: 40px;
   }

   .everywhere {
     grid-template-columns: 1fr;
     gap: 30px;
     text-align: center
   }

   .ew-text p {
     margin-left: auto;
     margin-right: auto
   }

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

   .d-tile.wide {
     grid-column: span 2
   }

   .foot-inner {
     grid-template-columns: 1fr 1fr;
     gap: 30px
   }

   .ti-nav {
     display: none;
   }

   .showcase-row {
     grid-template-columns: 1fr;
   }

   .related-box-mobile {
     margin-top: 24px;
   }

   .showcase-menu-wrapper {

     display: none;
   }

   .showcase-left {

     gap: 0;
   }

   .related-box-mobile h2 {
     font-weight: 700;

   }

   .showcase-panel {
     min-height: auto;
     padding: 30px 10px 0;
   }

   .showcase {
     padding: 20px 24px 20px;
   }

   .everywhere {
     padding: 0px 24px 20px;
   }

   .ew-art {
     min-height: auto;
   }
 }

 @media (max-width:767px) {

   .ti-hero-title {
     font-size: 30px;
     line-height: 1.4;
     margin-bottom: 34px;
   }

   .ti-hero-btn {
     min-width: 145px;
     height: 46px;
     font-size: 18px;
   }
 }

 @media (max-width:575px) {

   .ti-hero-section {
     padding: 50px 16px 0px;
   }

   .ti-hero-title {
     font-size: 24px;
     line-height: 1.5;
     margin-bottom: 28px;
   }

   .ti-hero-btn {
     width: 100%;
     max-width: 220px;
     font-size: 16px;
     height: 44px;
   }

   .btn-listen {
     padding: 9px 16px;
     font-size: 13px;
   }

   .ti-logo {
     font-size: 13px;
   }


   .btn-listen {
     padding: 8px 14px;
     font-size: 13px
   }

   .ti-auth a {
     font-size: 13px
   }

   .ti-hero {
     padding: 40px 14px 110px
   }

   .discover h2 {
     font-size: 28px
   }

   .ew-text h2 {
     font-size: 30px
   }

   .foot-inner {
     grid-template-columns: 1fr
   }
 }