/* ========================= */
/* General Styles */
/* ========================= */
html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;          /* prevent horizontal page scroll */
}


/* ========================= */
/* Navigation Bar */
/* ========================= */
.section-nav {
  position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3000;              /* higher than any other section */
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}
.section-nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
}


.section-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}


.section-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}


.section-nav ul li a:hover {
    color: #ffcc00;
}


/* ========================= */
/* Hero Section */
/* ========================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}


.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}


/* Hero Overlay (Logo + Tagline) */
.hero-overlay-link {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 2;
}


.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


.hero-overlay:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.4);
}


.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}


.hero-tagline {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffcc00;
    white-space: pre;
}


/* ========================= */
/* Section Headings */
/* ========================= */
.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 40px;
    font-family: 'Georgia', serif;
}


/* ========================= */
/* OLD TikTok grid (legacy) */
/* ========================= */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


.video-card {
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
    width: 300px;
    color: white;
    text-align: center;
}


.video-card iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}


/* ========================= */
/* Typewriter Cursor Animation */
/* ========================= */
@keyframes blinkCursor {
    0%, 100% { border-right-color: transparent; }
    50% { border-right-color: #ffcc00; }
}


#typed-tagline {
    border-right: 2px solid #ffcc00;
    padding-right: 5px;
    animation: blinkCursor 0.7s step-end infinite;
}


/* ========================================================= */
/* PODCAST FULL-WIDTH WRAPPER (NOTICEABLE GREY + DECOR BG) */
/* ========================================================= */
.podcast-block{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 70px 0;
    overflow: hidden;
    background: #2f2f2f;
}


/* blurred background image layer */
.podcast-block::before{
    content:"";
    position:absolute;
    inset:-40px;
    background: url("../assets/images/CLP2.jpeg") center/cover no-repeat;
    filter: blur(18px);
    opacity: .35;
    transform: scale(1.05);
}


/* dark overlay */
.podcast-block::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(25,25,25,0.55);
}


.podcast-block > *{
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* ========================================================= */
/* Banner: SMALL + NO CROPPING */
/* ========================================================= */
.podcast-banner{
    position: relative;
    padding: 0 20px;
    margin: 0 auto 35px;
}


.podcast-banner img{
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}


/* ========================================================= */
/* Banner CTA Overlay (TikTok + YouTube) */
/* ========================================================= */
.banner-cta{
    position: absolute;
    inset: 0;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    pointer-events: none;
}


.banner-cta__card{
    pointer-events: auto;
    max-width: 360px;
    background: rgba(10,10,10,0.55);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 14px 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}


.banner-cta__card--left{ justify-self: start; }
.banner-cta__card--right{ justify-self: end; text-align: right; }


.banner-cta__title{
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}


.banner-cta__sub{
    margin: 0 0 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.35;
}


.cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
    transition: transform .18s ease, filter .18s ease, background .18s ease;
}


/* ensure icons inside buttons scale nicely */
.cta-btn i {
    font-size: 18px;
    line-height: 1;
}


.cta-btn svg{
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}


.cta-btn:hover{
    transform: translateY(-2px);
    filter: brightness(1.05);
}


.cta-btn--tiktok{
    background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(30,30,30,0.8));
}


.cta-btn--youtube{
    background: rgba(255,0,0,0.92);
    border-color: rgba(255,0,0,0.35);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding-inline: 18px; /* adapts to icon+text width */
}


/* MOBILE CIRCLE ICONS OVER BANNER */
.banner-cta__circles{
    position:absolute;
    inset:0;
    display:none;              /* mobile only */
    align-items:flex-end;      /* push towards bottom */
    justify-content:space-between;
    padding:0 18px 18px;       /* bottom third */
    pointer-events:none;
}


.banner-cta__circles .circle-btn{
    pointer-events:auto;
    width:54px;
    height:54px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.75);
    border:1px solid rgba(255,255,255,0.3);
    box-shadow:0 10px 25px rgba(0,0,0,0.6);
}


/* use Bootstrap Icons inside circles */
.banner-cta__circles .circle-btn i {
    font-size: 26px;
    line-height: 1;
    color:#fff;
}


.circle-btn--tiktok{ background:#000; }
.circle-btn--youtube{ background:#ff0000; }


@media (max-width: 900px){
    .banner-cta{
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }
    .banner-cta__card{
        max-width: 100%;
        text-align: left;
    }
    .banner-cta__card--right{
        justify-self: start;
    }
}


/* Mobile layout: hide cards, show only circles */
@media (max-width: 700px) {


  .podcast-banner {
    padding: 0 10px;
  }


  .podcast-banner img {
    max-height: 220px;
  }


  .banner-cta__card {
    display:none;
  }


  .banner-cta {
    padding:0;
  }


  .banner-cta__circles{
    display:flex;
  }
}


/* ========================================================= */
/* Podcast section container */
/* ========================================================= */
#podcasts.podcast-page{
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;


    padding: 40px 30px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;


    background: url("../assets/images/CLP9.jpeg") center/cover no-repeat;
}


#podcasts.podcast-page::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(3px);
    z-index: 0;
}


#podcasts.podcast-page > *{
    position: relative;
    z-index: 1;
}


/* LEFT CARD */
#podcasts .podcast-card{
    background: #6b3f24;
    border-radius: 24px;
    padding: 18px 18px 22px;
    color: #fff;
}


#podcasts .podcast-card .cover-img{
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-bottom: 16px;
}


#podcasts .podcast-card h1{
    font-size: 38px;
    line-height: 1.1;
    margin: 6px 0 10px;
    font-weight: 800;
}


#podcasts .podcast-card p{
    margin: 8px 0;
    font-size: 13px;
    opacity: 0.92;
}


#podcasts .play-latest{
    margin-top: 16px;
    width: 70%;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 700;
    cursor: pointer;
}


#podcasts .quick-actions{
    margin-top: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}


#podcasts .quick-actions button{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.16);
    color: #fff;
    cursor: pointer;
}


/* RIGHT SIDE */
#podcasts .episode-list{
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding-top: 4px;
    position: relative;
}


/* Filter pills */
#podcasts .episode-filters{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}


#podcasts .episode-filters button{
    border: none;
    background: #f1f1f1;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #111;
}


/* Episodes list rows */
#podcasts .episodes{
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 0 0 auto;
}


#podcasts .episode{
    background: transparent;
    width: auto;
    padding: 0;
    border-radius: 0;
    text-align: left;
    cursor: pointer;


    display: grid;
    grid-template-columns: 28px 190px 1fr 40px;
    gap: 14px;
    align-items: center;
}


#podcasts .episode:hover{
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
}


#podcasts .episode-num{
    color: #666;
    font-weight: 600;
    text-align: right;
}


#podcasts .episode img{
    width: 190px;
    height: 108px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


#podcasts .episode-info h2{
    font-size: 18px;
    margin: 0 0 8px;
    font-weight: 700;
    color: #111;
}


#podcasts .episode-info p{
    margin: 0;
    color: #666;
    font-size: 13px;
}


#podcasts .episode-options{
    justify-self: end;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    color: #111;
}


/* Subscribe box: lower-right */
#podcasts .subscribe-box{
    margin-top: auto;
    align-self: flex-end;
    width: 340px;


    padding: 26px;
    border-radius: 18px;
    text-align: center;


    background: rgba(0,0,0,0.70);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}


#podcasts .subscribe-box h3{
    margin: 0 0 10px;
    font-size: 20px;
    color: #fff;
}


#podcasts .subscribe-box p{
    margin: 0 0 18px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}


#podcasts .subscribe-btn{
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}


#podcasts .subscribe-btn:hover{
    background: #cc0000;
    transform: scale(1.05);
}


/* Responsive */
@media (max-width: 900px){
    .podcast-banner{ padding: 0 16px; }
    .podcast-banner img{ max-height: 200px; }


    #podcasts.podcast-page{
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px 16px;
    }


    #podcasts .play-latest{ width: 100%; }


    #podcasts .episode{
        grid-template-columns: 24px 150px 1fr 36px;
    }


    #podcasts .episode img{
        width: 150px;
        height: 90px;
    }


    #podcasts .episode-list{ min-height: auto; }


    #podcasts .subscribe-box{
        margin-top: 22px;
        align-self: stretch;
        width: auto;
    }
}


/* ========================= */
/* RIGHT SLIDING YT CAROUSEL */
/* ========================= */
.yt-carousel-toggle{
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}


.yt-carousel-btn{
    border: none;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
}


.yt-carousel-btn:hover{
    background: rgba(0,0,0,0.85);
}


.yt-carousel{
    position: absolute;
    top: 56px;
    right: 0;
    width: min(520px, 95%);
    height: calc(100% - 56px);
    background: rgba(30,30,30,0.90);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);


    transform: translateX(110%);
    transition: transform 0.35s ease;
    z-index: 10;
}


.yt-carousel.is-open{ transform: translateX(0); }


.yt-carousel__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 6px 12px;
}


.yt-carousel__header h3{
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}


.yt-carousel__close{
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
}


.yt-carousel__close:hover{ background: rgba(255,255,255,0.22); }


.yt-carousel__track{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 6px 12px;
    scrollbar-width: none;
}


.yt-carousel__track::-webkit-scrollbar{ display: none; }


.yt-slide{
    min-width: 460px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px;
    display: grid;
    grid-template-columns: 26px 170px 1fr 30px;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    scroll-snap-align: start;
}


.yt-slide:hover{ background: rgba(255,255,255,0.12); }


.yt-num{
    color: rgba(255,255,255,0.75);
    font-weight: 700;
    text-align: right;
}


.yt-slide img{
    width: 170px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


.yt-info h4{
    margin: 0 0 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}


.yt-info p{
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
}


.yt-more{
    justify-self: end;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
}


.yt-carousel__nav{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 6px 6px;
}


.yt-nav{
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
}


.yt-nav:hover{ background: rgba(255,255,255,0.20); }


@media (max-width: 900px){
    .yt-carousel{
        position: fixed;
        inset: 0;
        width: auto;
        height: auto;
        border-radius: 0;
    }


    .yt-slide{
        min-width: 92vw;
        grid-template-columns: 26px 150px 1fr 30px;
    }


    .yt-slide img{
        width: 150px;
        height: 90px;
    }
}


/* ========================= */
/* VIDEO MODAL PLAYER */
/* ========================= */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}


.video-modal.is-open { display: block; }


.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}


.video-modal__dialog {
    position: relative;
    width: min(1000px, 92vw);
    margin: 7vh auto 0;
    background: #0b0b0b;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}


.video-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}


.video-modal__close:hover { background: rgba(255, 255, 255, 0.3); }


.video-modal__frame {
    border-radius: 14px;
    overflow: hidden;
}


.video-modal__frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}


/* ========================= */
/* Sports Section */
/* ========================= */
.sports-section {
    background-color: #000;
    padding: 50px 20px;
    color: #fff;
}


/* ========================= */
/* SIDE DECORATIVE IMAGES */
/* ========================= */
.side-image{
    position: fixed;
    top: 0;
    bottom: 0;
    width: 18vw;
    z-index: 0;
    overflow: hidden;
}


.side-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}


.side-left{ left: 0; }
.side-right{ right: 0; }


.hero,
.podcast-block,
.section-nav,
.tiktok-section {
    position: relative;
    z-index: 1 ;
}


@media (max-width: 1200px){
    .side-image{ display: none; }
}


/* ========================= */
/* ICON BUTTONS */
/* ========================= */
.icon-btn{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,0.12);
    color: #fff;
    transition: all 0.25s ease;
}


.icon-btn svg{
    width: 20px;
    height: 20px;
    stroke-width: 2;
}


.icon-btn:hover{
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}


.icon-btn-dark{ background: rgba(0,0,0,0.75); }
.icon-btn-dark:hover{ background: rgba(0,0,0,0.9); }


.more-wrap{
    position: relative;
    display: inline-flex;
}


.more-menu{
    position: absolute;
    bottom: 54px;
    right: 0;
    width: 180px;
    background: rgba(15,15,15,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 8px;
    display: none;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
}


.more-menu.is-open{ display: block; }


.more-menu button{
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}


.more-menu button:hover{
    background: rgba(255,255,255,0.10);
}


.toast{
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    background: rgba(15,15,15,0.92);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 55px rgba(0,0,0,0.5);
    z-index: 99999;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}


.toast.show{
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}


/* ========================= */
/* TikTok Card Carousel      */
/* ========================= */
.tiktok-section{
  padding: 80px 20px 120px;
  background:#000;
  position:relative;
  z-index:2;
}


.tiktok-carousel{
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}


.tiktok-carousel__subtitle{
  margin: 8px 0 28px;
  font-size: 0.95rem;
  color: #ccc;
}


.tiktok-carousel__viewport{
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}


.tiktok-carousel__track{
  position: relative;
  width: 100%;
  height: 100%;
}


/* Card base */
.tiktok-card{
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, 88vw);
  height: 480px;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms ease, opacity 320ms ease, box-shadow 320ms ease;
  will-change: transform, opacity;
}


/* TikTok frame + overlay */
.tiktok-card__frame{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
  background:#000;
}

.tiktok-card__frame iframe{
  width: 100%;
  height: 100%;
  border:0;
}

/* Transparent overlay that blocks touch/click to iframe */
.tiktok-card__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  /* no pointer-events:none here so it actually intercepts touches */
}

.tiktok-card__caption{
  margin-top: 10px;
  font-size: 0.95rem;
  color:#eee;
}


/* Active / side cards */
.tiktok-card.is-active{
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}


.tiktok-card.is-prev{
  transform: translate(calc(-50% - 180px), -50%) scale(0.75);
  opacity: 0.5;
  z-index: 2;
}


.tiktok-card.is-next{
  transform: translate(calc(-50% + 180px), -50%) scale(0.75);
  opacity: 0.5;
  z-index: 2;
}


/* Nav arrows */
.tiktok-carousel__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.75);
  color:#fff;
  cursor:pointer;
  font-size: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background 0.2s ease, transform 0.2s ease;
}


.tiktok-carousel__nav--prev{ left: -10px; }
.tiktok-carousel__nav--next{ right: -10px; }


.tiktok-carousel__nav:hover{
  background: rgba(0,0,0,0.95);
  transform: translateY(-50%) scale(1.05);
}


/* Dots */
.tiktok-carousel__dots{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap:8px;
}


.tiktok-carousel__dots button{
  width:8px;
  height:8px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,0.25);
  cursor:pointer;
  transition:background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}


.tiktok-carousel__dots button.is-active{
  width:18px;
  background:#fff;
  transform:scale(1.05);
}


/* CTA */
.tiktok-carousel__cta{
  margin-top:24px;
}


/* Mobile tweaks */
@media (max-width:600px) {
  .tiktok-carousel__viewport{
    height: 520px;
  }
  .tiktok-card{
    width: 92vw;
    height: 440px;
  }
  .tiktok-card.is-prev{
    transform: translate(calc(-50% - 120px), -50%) scale(0.75);
  }
  .tiktok-card.is-next{
    transform: translate(calc(-50% + 120px), -50%) scale(0.75);
  }
  .tiktok-carousel__nav--prev{ left: 4px; }
  .tiktok-carousel__nav--next{ right: 4px; }
}


.tiktok-section{
  padding: 80px 20px 120px;
  background: transparent;      /* was #000 */
  position: relative;
  z-index: 2;
}


.tiktok-carousel{
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #000;             /* black panel in middle */
  padding: 40px 24px 36px;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.7);
}


.section-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;        /* higher than TikTok content */
}


.tiktok-section{
  position: relative;
  z-index: 2;           /* lower than nav */
}


/* ========================= */
/* SIMPLE ABOUT + TEAM       */
/* ========================= */


.about,
.about-team {
  background: #000;
  color: #fff;
}


.about {
  padding: 60px 20px 30px;
}


.about-team {
  padding: 40px 20px 80px;
}


.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}


.about h2 {
  font-size: 2.4rem;      /* bigger main heading */
  margin-bottom: 1.4rem;
}


.about h2,
.about-team h2,
.about-team-header h3 {
  text-align: center;
}


.about h2,
.about-team h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  font-weight: 800;
}


.about p {
  font-size: 1.5rem;
  line-height: 1.8
}


.about h3 {
  font-size: 1.5rem;
  margin-bottom:0.8;
  margin-top: 2rem;
}


.about-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
}


.about-list li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.6;
}


/* Center the Meet the team heading */
.about-team-header {
  text-align: center;
  margin-bottom: 2rem;
}


.about-team-header h3 {
  font-size: 2rem;
}


.about-team-header p {
  font-size: 1.5rem;
  color: #ccc;
  margin-top: 0.6rem;
}


/* Team */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}


.team-card {
  background: #0b0b0b;
  border-radius: 22px;
  padding: 18px 18px 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}


.team-img {
  width: 100%;
  height: 230px ;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 12px;
}


.team-card h3 {
  font-size: 1.2rem;
}


.team-role {
  font-size: 0.8rem ;
}


.team-bio {
  font-size: 0.98rem;
  line-height: 1.7;
}


/* Stack on mobile */
@media (max-width: 900px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}


/* Small spacing polish for About + Team */
.about {
  padding-top: 40px;      /* was 60–80, reduce if you want it closer to TikTok */
}


.about-team {
  margin-top: 10px;       /* slight gap from About */
}


.about-team-grid {
  align-items: stretch;   /* cards same height visually */
}


/* Full-width black band for About + Team */
.about-band {
  position: relative;
  z-index: 2;           /* above side-image */
  background: #000;
}


/* Mobile tweaks so text doesn't feel cramped */
@media (max-width: 900px) {
  .about-inner {
    max-width: 100%;
    padding: 0 16px;
  }


  .about-team-grid {
    grid-template-columns: 1fr;
  }


  .about h2 {
    font-size: 2rem;
  }


  .about p,
  .team-bio {
    font-size: 0.95rem;
  }
}


/* Meet the team hover effect */
.team-card {
  background: #0b0b0b;
  border-radius: 22px;
  padding: 18px 18px 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}


.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.85);
  border-color: rgba(255, 204, 0, 0.7); /* subtle gold outline */
}


.team-card:hover .team-img {
  filter: brightness(1.05);
}


.team-card:hover h3 {
  color: #ffcc00;
}
@media (max-width: 700px) {
  .hero {
    height: 80vh; /* a bit shorter on phones */
  }


  .hero-logo {
    max-width: 140px;       /* was 200px */
    margin-bottom: 10px;
  }


  .hero-overlay {
    padding: 14px 18px;
  }


  .hero-tagline {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}
/* Smaller Chill Lounge card on mobile */
@media (max-width: 600px) {


  #podcasts .podcast-card {
    max-width: 100%;
    padding: 14px 14px 18px;
    border-radius: 20px;
  }


  #podcasts .podcast-card .cover-img {
    height: 220px;
  }


  #podcasts .podcast-card h1 {
    font-size: 28px;
    margin: 8px 0 6px;
  }


  #podcasts .podcast-card p {
    font-size: 12px;
  }


  #podcasts .play-latest {
    padding: 10px 14px;
    font-size: 14px;
  }


  #podcasts .quick-actions {
    gap: 10px;
  }


  #podcasts .quick-actions button {
    width: 40px;
    height: 40px;
  }
}
/* Smaller TikTok section + cards on mobile */
@media (max-width: 600px) {


  .tiktok-section {
    padding: 50px 12px 70px;       /* less top/bottom space */
  }


  .tiktok-carousel {
    padding: 28px 16px 24px;       /* thinner black panel */
  }


  .tiktok-carousel__viewport {
    height: 420px;                 /* was 520px */
  }


  .tiktok-card {
    width: 90vw;
    height: 360px;                 /* was 440–480px */
  }


  .tiktok-card__frame {
    border-radius: 16px;
  }


  .tiktok-card__caption {
    font-size: 0.85rem;
  }
}
/* tighten gap between Subscribe box and TikTok Clips */
@media (max-width: 900px) {


  /* pull TikTok section up */
  .tiktok-section {
    padding-top: 40px;        /* was 80px */
  }


  /* reduce bottom space under podcasts wrapper */
  .podcast-block {
    padding-bottom: 40px;     /* was 70px */
  }
}
/* Smaller Meet the team cards on mobile */
@media (max-width: 600px) {


  .about-team {
    padding: 30px 16px 50px;      /* less vertical space */
  }


  .about-team-header {
    margin-bottom: 1.2rem;
  }


  .about-team-grid {
    gap: 1.4rem;
  }


  .team-card {
    padding: 14px 14px 18px;
    border-radius: 18px;
  }


  .team-img {
    height: 200px;               /* was 230px */
    margin-bottom: 10px;
  }


  .team-card h3 {
    font-size: 1.05rem;
  }


  .team-role {
    font-size: 0.75rem;
  }


  .team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}


/* Full-width grey band between hero and TikTok/podcast */
.hero-spacer{
  width: 100%;
  height: 60px;                 /* adjust to taste: 40–80px */
  background: #1e1e1e;          /* medium‑dark grey */
}
