  /* Reset-ish */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html,body { height: 100%; font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial; background: #000; color:#fff; }
/* MOBILE FIX — DOES NOT AFFECT IMAGES */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Apply max-width fix to everything EXCEPT IMAGES */
  *:not(img) {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Fix common overflow elements */
  .header, .top-bar, .menu, .nav, .section, .hero {
    width: 100% !important;
  }

  /* Slide-out menu fix */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }
}

    /* Top lime strip */
    .top-strip{
      background:#4be000;
      color:#000;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:8px 26px;
      font-weight:700;
      font-size:13px;
      letter-spacing:0.4px;
    }
    .top-strip .left{ display:flex; align-items:center; gap:12px; }
    .top-strip .right{ display:flex; align-items:center; gap:12px; }
    .lang-badge{ background:transparent; padding:6px 10px; border-radius:2px; }
    .contact-badge{ display:flex; align-items:center; gap:8px; padding:6px 10px; }

    /* Black header with logo and social/listen */
    .brand-header{
      background:#000;
      padding:18px 26px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      border-bottom:4px solid #000;
    }
    .brand-left{ display:flex; align-items:center; gap:18px; }
    .logo-wrap img{ height:56px; display:block; }
    .brand-right{ display:flex; align-items:center; gap:18px; }

    .social-icons{ display:flex; gap:12px; align-items:center; }
    .social-icon{
      width:44px; height:44px; border-radius:50%;
      display:inline-flex; align-items:center; justify-content:center;
      border:2px solid #4be000; background:#000; color:#4be000; font-weight:800; text-decoration:none;
      font-size:16px;
    }
    .listen-btn{
      background:#4be000; color:#000; padding:10px 18px; border-radius:20px; font-weight:800;
      display:inline-flex; align-items:center; gap:10px; text-decoration:none;
    }

    /* Nav bar (green centered) */
    .nav-bar{
      background:#4be000;
      display:flex;
      justify-content:center;
      padding:10px 0;
    }
    .nav{
      display:flex;
      gap:48px;
      list-style:none;
      font-weight:700;
      align-items:center;
      font-size:15px;
    }
    .nav a{ color:#000; text-decoration:none; padding:6px 0; }
    .nav a.active{ background:#000; color:#4be000; padding:6px 12px; border-radius:20px; }

    /* --- HERO --- */
    .hero {
      position: relative;
      max-width: 1300px;
      margin: 38px auto 80px;
      padding: 0 26px;
      min-height: 520px;
      display: flex;
      align-items: center;
      gap: 44px;
    }

    /* left column (text badge + CTAs + left tracks) */
    .hero-left{
      flex: 0 0 640px;
      position: relative;
      z-index: 5;
    }

    /* big white rounded badge */
    .title-bubble{
      display: inline-block;
      background: #fff;
      color: #000;
      border-radius: 50px;
      padding: 28px 36px;
      max-width: 620px;
      box-shadow: 0 0 0 8px rgba(0,0,0,0.0);
      position: relative;
    }
    .title-top {
      font-family: 'Oswald', sans-serif;
      color: #ff8d00; /* orange */
      font-size: 56px;
      font-weight: 800;
      letter-spacing: 3px;
      display:block;
      margin-bottom: 6px;
    }
    .title-bottom{
      font-size: 70px;
      font-weight: 900;
      color: #000;
      display:block;
      line-height: 0.95;
      letter-spacing: -1px;
    }

    /* CTAs under badge */
    .cta-row{
      margin-top: 30px;
      display:flex;
      gap: 22px;
      align-items:center;
    }
    .pill{
      border-radius: 40px;
      padding: 14px 26px;
      display:inline-flex;
      align-items:center;
      gap:14px;
      font-weight:700;
      font-size:16px;
      text-decoration:none;
    }
    .pill.green{ background:#bffe5f; color:#000; } /* slightly lighter green */
    .pill.pink{ background:#d51db2; color:#fff; }

    /* small "Stay informed" */
    .stay-inform{
      margin-top: 30px;
      font-size: 28px;
      font-weight:700;
      line-height:1.05;
      color:#fff;
    }

    /* track cards container (two horizontal cards) */
    .tracks-row{
      margin-top: 36px;
      display:flex;
      gap: 42px;
      align-items:flex-end;
    }
    .track-card{
      background: #ff8b1a; /* orange frame */
      border-radius: 22px;
      padding: 18px;
      width: 360px;
      display:flex;
      align-items:center;
      gap: 18px;
      box-shadow: 0 2px 0 rgba(0,0,0,0.35);
    }
    .track-left-num{
      font-size: 110px;
      font-weight:900;
      line-height:1;
      color:#fff;
      width: 140px;
      text-align:center;
      font-family: 'Oswald', sans-serif;
      text-shadow: 0 2px 0 rgba(0,0,0,0.25);
    }
    .track-meta{
      flex:1;
      background: #0e0e0e;
      padding: 12px 14px;
      border-radius: 12px;
      display:flex;
      align-items:center;
      gap:12px;
    }
    .art{
      width:64px; height:64px; border-radius:8px; object-fit:cover;
    }
    .meta-text h4{ font-size:16px; margin-bottom:6px; font-weight:800; color:#fff; }
    .meta-text p{ font-size:13px; color:#ddd; margin:0; }

    .meta-play{
      width:38px; height:38px; border-radius:50%; background:#000; color:#fff; display:inline-flex; align-items:center; justify-content:center; margin-left:auto;
      font-size:16px;
    }

    /* hero-right with big green rounded rectangle and female image overlapping */
    .hero-right{
      flex: 1;
      position: relative;
      min-height: 420px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .green-shape{
      background: #4be000;
      width: 420px;
      height: 300px;
      border-radius: 60px;
      position: absolute;
      right: 30px;
      top: 40px;
      z-index: 1;
    }
    .hero-figure{
      position: absolute;
      right: -10px;
      top: -40px;
      z-index: 4;
      max-width: 620px;
      transform: translateZ(0);
    }
    .hero-figure img{
      height: 520px;
      object-fit: cover;
      display:block;
      border-radius: 18px;
      filter: grayscale(1);
      /* Animation for clock-like tip movement at the top */
      animation: clockTick 4s ease-in-out infinite;
    }

    @keyframes clockTick {
      0%, 100% {
        transform: translateX(0) rotateY(0deg);
      }
      25% {
        transform: translateX(-3px) rotateY(-1deg);
      }
      50% {
        transform: translateX(0) rotateY(0deg);
      }
      75% {
        transform: translateX(3px) rotateY(1deg);
      }
    }

    /* small responsive adjustments */
    @media (max-width:1200px){
      .title-top{ font-size:48px; }
      .title-bottom{ font-size:56px; }
      .hero { min-height:480px; }
      .hero-left { flex: 0 0 56%; }
      .hero-figure img{ height:460px; animation-duration: 3.5s; }
      .green-shape{ width:360px; height:260px; top:70px; right:10px; }
    }

    @media (max-width:820px){
      .hero{ flex-direction:column; align-items:flex-start; gap:30px; padding-bottom:40px; min-height: auto; }
      .hero-left{ flex:1; max-width:100%; }
      .hero-right{ width:100%; height:320px; min-height:320px; position: relative; }
      .green-shape{
        position:absolute; 
        left:50%; 
        transform:translateX(-50%); 
        top:20px; 
        right:auto; 
        width: 300px; 
        height: 280px; 
        border-radius: 50px;
      }
      .hero-figure { 
        position: absolute; 
        left: 50%; 
        top: 50%; 
        transform: translate(-50%, -50%); 
        z-index: 2; 
        right: auto; 
      }
      .hero-figure img{ 
        height:260px; 
        width: auto; 
        border-radius: 16px;
        animation-duration: 3s;
      }
      .tracks-row{ flex-direction:column; gap:18px; align-items:flex-start; }
    }

    @media (max-width:480px){
      .title-top{ font-size:36px; }
      .title-bottom{ font-size:42px; }
      .track-left-num{ font-size:72px; width:110px; }
      .track-card{ width: 100%; padding:12px; }
      .meta-play{ width:34px; height:34px; font-size:14px; }
     .hero-figure img {
    height: 300px;
    margin-left: -80px; /* move 20px to the left */
    animation-duration: 2.5s;
}

      .green-shape{ width: 260px; height: 240px; border-radius: 40px; top: 40px; }
    }

    /* FOOTER STYLES */
    .footer {
      background: #000;
      color: #fff;
      padding: 60px 18px 40px;
      text-align: center;
      border-top: 1px solid #333; /* optional separation from content */
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-title {
      font-size: 32px;
      font-weight: 800;
      margin: 0 0 8px;
    }
    .footer-sub {
      font-size: 16px;
      color: #ccc;
      max-width: 600px;
      margin: 0 auto 40px;
    }
    .now-on-air {
      position: relative;
      display: inline-flex;
      align-items: center;
      background: #4be000;
      color: #000;
      font-size: 18px;
      font-weight: 800;
      padding: 8px 24px;
      border-radius: 30px;
      margin-bottom: 30px;
    }
    .now-stripe {
      position: absolute;
      left: -40px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: auto;
    }
    .now-dash {
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      width: 200px;
      height: 2px;
      background: repeating-linear-gradient(to right, #4be000, #4be000 4px, transparent 4px, transparent 8px);
    }
    .on-air-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-bottom: 30px;
    }
    .on-air-card {
      background: #1a1a1a;
      border-radius: 30px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      width: auto;
    }
    .on-air-card img {
      width: 120px;
      height: 120px;
      border-radius: 20px;
      object-fit: cover;
    }
    .card-text {
      text-align: left;
    }
    .card-text h3 {
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 4px;
    }
    .card-text p {
      font-size: 16px;
      color: #ccc;
      margin: 0 0 4px;
    }
    .card-text span {
      font-size: 14px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .made-in {
      background: #333;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      margin-top: 12px;
      display: inline-block;
    }
    .logo-side {
      text-align: left;
    }
    .logo-text {
      font-size: 40px;
      font-weight: 900;
      line-height: 0.9;
      margin: 0 0 8px;
    }
    .logo-orange {
      color: #ff9900;
    }
    .logo-green {
      color: #4be000;
    }
    .stay-tune {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 12px;
    }
    .footer .social-icons {
      justify-content: flex-start;
      gap: 12px;
    }
    .footer .social-icon {
      background: #4be000;
      color: #fff;
      border: none;
      font-size: 20px;
      width: 40px;
      height: 40px;
    }
    .listen-now {
      background: #4be000;
      color: #000;
      padding: 12px 40px;
      border-radius: 40px;
      font-weight: 800;
      font-size: 18px;
      border: none;
      cursor: pointer;
      margin-bottom: 40px;
    }
    .footer-line {
      border: none;
      border-top: 1px solid #333;
      margin: 0 auto 20px;
      width: 100%;
    }
    .copyright {
      font-size: 14px;
      color: #999;
    }
  /* NOW PLAYING feature section */
   /* ---------- Container + overall ---------- */
    #top-week-songs{
      background:#000;
      color:#fff;
      padding:48px 36px 72px;
      position:relative;
      overflow:visible;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    /* decorative left white triangles */
    .tw-decor {
      position:absolute;
      left:24px;
      top:40px;
      display:flex;
      gap:12px;
      transform:rotate(0deg);
      z-index:2;
    }
    .tw-decor span{
      width:0;
      height:0;
      border-style:solid;
      border-width:0 36px 36px 0;
      border-color:transparent #fff transparent transparent;
      display:block;
      opacity:0.98;
      border-radius:2px;
    }
    .tw-decor span:nth-child(2){ transform: translateY(8px) scale(0.8); }
    .tw-decor span:nth-child(3){ transform: translateY(16px) scale(0.6); }

    /* heading */
    .tw-heading {
      text-align:center;
      margin:6px 0 28px;
    }
    .tw-heading h2{
      font-size:56px;
      letter-spacing:1px;
      margin:0;
      font-weight:900;
      text-transform:uppercase;
      line-height:0.95;
      /* green gradient text */
      background: linear-gradient(180deg, #4be000 0%, #1a8f00 100%);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      background-clip:text;
      text-shadow: 0 6px 0 rgba(0,0,0,0.35);
      display:inline-block;
      padding-bottom:6px;
    }
    /* blue underline bar */
    .tw-heading .underline{
      display:block;
      height:6px;
      width:220px;
      margin:10px auto 0;
      background:linear-gradient(90deg,#0071ff,#0058d6);
      border-radius:3px;
      box-shadow:0 3px 0 rgba(0,0,0,0.5);
    }

    /* cards grid */
    .tw-grid{
      max-width:1200px;
      margin:34px auto 28px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:28px;
      align-items:start;
      z-index:1;
    }

    /* single card */
    .tw-card{
      background:#222;
      border-radius:18px;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      box-shadow: 0 10px 0 rgba(0,0,0,0.6);
      position:relative;
      transition: transform .18s ease;
      border: 4px solid rgba(255,255,255,0.03);
    }
    .tw-card:hover{ transform: translateY(-6px); }

    /* image area */
    .tw-cover{
      display:block;
      width:100%;
      aspect-ratio: 1/1;
      background-size:cover;
      background-position:center;
      border-bottom:0;
    }

    /* info bar at bottom (dark rounded area) */
    .tw-info{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 14px;
      background: #252525;
      gap:12px;
    }
    .tw-meta{
      display:flex;
      flex-direction:column;
      gap:6px;
      min-width:0;
    }
    .tw-title{
      font-weight:800;
      font-size:16px;
      color:#fff;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .tw-artist{
      color:#bfbfbf;
      font-size:13px;
    }

    /* heart badge */
    .tw-heart{
      width:36px;
      height:36px;
      min-width:36px;
      border-radius:18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,255,255,0.08);
      border:2px solid rgba(255,255,255,0.06);
      color:#fff;
      font-size:14px;
    }

    /* card corner rounding for image top-left rounded like design (soft) */
    .tw-card .tw-cover { border-radius:12px 12px 0 0; }

    /* CTA line */
    .tw-cta{
      text-align:center;
      margin-top:48px;
      font-size:32px;
      font-weight:800;
      color:#fff;
    }

    /* small caption above first card (the screenshot has a white rounded label) */
    .tw-card .cover-caption {
      position:absolute;
      top:10px;
      left:10px;
      right:auto;
      background:#fff;
      color:#000;
      padding:8px 12px;
      border-radius:12px;
      font-weight:700;
      font-size:13px;
      box-shadow:0 6px 0 rgba(0,0,0,0.35);
      z-index:3;
    }

    /* -------- responsive -------- */
    @media (max-width:1100px){
      .tw-grid{ grid-template-columns:repeat(2,1fr); gap:22px; max-width:1000px;}
      .tw-heading h2{ font-size:48px; }
    }
    @media (max-width:640px){
      .tw-grid{ grid-template-columns:1fr; gap:18px; max-width:560px; margin:20px auto;}
      #top-week-songs{ padding:36px 18px 56px; }
      .tw-heading h2{ font-size:36px; }
      .tw-heading .underline{ width:160px; }
      .tw-cta{ font-size:22px; padding:0 12px; }
      .tw-decor{ left:12px; top:12px; transform:scale(0.85); }
    }
    
  .now-feature {
    background: #000; /* match site black */
    padding: 70px 18px; /* vertical spacing similar to design */
  }

  .now-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px; /* left flexible, right fixed-ish like the design */
    gap: 40px;
    align-items: center;
  }

  /* LEFT: giant decorative heading (visual only) + paragraph */
  .now-left {
    color: #fff;
    position: relative;
  }

  /* large magenta "NOW PLAYING" (visual prominent text) */
  .now-giant {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-weight: 900;
    font-size: 140px; /* big — adjust to taste */
    line-height: 0.85;
    color: #e43aa1; /* magenta/pink from design */
    -webkit-font-smoothing: antialiased;
    letter-spacing: -2px;
    margin-bottom: 28px;
    /* keep it flush left like the design */
  }

  /* paragraph block shown underneath the giant text */
  .now-paragraph {
    max-width: 520px; /* limit width to match layout */
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    font-weight: 600;
  }

  /* RIGHT: big rounded image card */
  .now-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .now-right img {
    display: block;
    width: 520px; /* match grid column set above */
    height: 520px;
    object-fit: cover;
    border-radius: 36px; /* big rounded corners as design */
    box-shadow: 0 6px 30px rgba(0,0,0,0.6);
    border: 0;
  }

  /* decorative badge in the lower-right area of the image (subtle) */
  .now-badge {
    position: absolute;
    right: 48px;
    bottom: 48px;
    transform: translateZ(0);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .badge-inner{
    background: linear-gradient(135deg,#19492f,#5a8b3c);
    color:#fff;
    font-weight:800;
    padding: 18px 26px;
    border-radius: 16px;
    font-size: 18px;
    text-align:center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  }

  /* Responsive adjustments */
  @media (max-width: 1100px) {
    .now-inner {
      grid-template-columns: 1fr 420px;
      gap: 28px;
    }
    .now-right img {
      width: 420px;
      height: 420px;
      border-radius: 32px;
    }
    .now-giant {
      font-size: 110px;
    }
  }

  @media (max-width: 820px) {
    /* stack on smaller screens; image below text like many responsive designs */
    .now-inner {
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: start;
    }
    .now-right {
      justify-content: center;
    }
    .now-right img {
      width: 86%;
      height: auto;
      aspect-ratio: 1 / 1;
      max-width: 520px;
    }
    .now-giant {
      font-size: 72px;
    }
    .now-paragraph {
      font-size: 16px;
    }
    .now-badge {
      right: 8%;
      bottom: 8%;
    }
  }

  @media (max-width: 420px) {
    .now-giant {
      font-size: 52px;
      line-height: 0.9;
    }
    .now-paragraph {
      font-size: 15px;
    }
  }
  
    /* --- Container / promo bar --- */
    .explore-section{ background:#0b0b0b; color:#fff; padding:26px 22px 60px; font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial; }
    .promo {
      background:#d93fc4; /* magenta */
      border-radius:0 0 18px 18px;
      padding:28px 20px;
      display:flex;
      align-items:center;
      gap:22px;
      max-width:1200px;
      margin:0 auto 26px;
      box-shadow: 0 6px 0 rgba(0,0,0,0.5);
    }
    .promo .promo-text{
      font-weight:800;
      font-size:22px;
      line-height:1.05;
      max-width:820px;
    }
    .promo .promo-play{
      margin-left:auto;
      min-width:120px;
      height:120px;
      border-radius:60px;
      background:#55d000; /* green circle */
      display:inline-flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 6px 0 rgba(0,0,0,0.45);
      border:8px solid rgba(0,0,0,0.08);
    }
    .promo .promo-play .triangle{
      width:0; height:0;
      border-left:28px solid #000;
      border-top:18px solid transparent;
      border-bottom:18px solid transparent;
      transform:translateX(6px);
    }

    /* --- Cards grid - two rows of three --- */
    .cards-wrap{
      max-width:1200px;
      margin: 0 auto;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:26px;
      align-items:start;
      padding:6px 6px 0;
    }

    .afro-card{
      position:relative;
      border-radius:18px;
      overflow:hidden;
      min-height:560px;
      display:flex;
      align-items:flex-end;
      box-shadow: 0 12px 0 rgba(0,0,0,0.5);
      background-size:cover;
      background-position:center;
 
   
    }
    .afro-card:hover{ transform: translateY(-8px); box-shadow: 0 18px 30px rgba(0,0,0,0.6); }

    /* responsive tweaks */
    @media (max-width:1100px){
      .cards-wrap{ grid-template-columns: repeat(2, 1fr); }
      .afro-card{ min-height:320px; }
      .promo .promo-play{ width:96px; height:96px; border-radius:48px; min-width:96px; }
    }
    @media (max-width:680px){
      .cards-wrap{ grid-template-columns: 1fr; }
      .afro-card{ min-height:260px; }
      .promo{ padding:18px 14px; gap:14px; }
      .promo .promo-text{ font-size:18px; }
      .hex-wrap{ left:18px; bottom:86px; width:140px; height:96px; }
      .globe-badge{ left:14px; bottom:30px; width:48px; height:48px; font-size:20px; }
      .brand-line{ left:18px; bottom:10px; font-size:12px; }
    }

    /* small utility so overlay text is readable */
    .afro-overlay{
      position:absolute;
      inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.55) 70%);
      z-index:2;
      pointer-events:none;
    }
    
        .history {
          background: #000;
          color: #fff;
          padding: 60px 0;
        }
       .history-banner {
  position: relative;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;

  /* Keep your background image */
  background: url('images/22bcfc0d10bbd4cbf845f29c34a9b4a09a65eb13.png') no-repeat center/cover;
  overflow: hidden; /* ensures gradient respects border radius */
}

.history-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  /* Dark gradient overlay */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );

  z-index: 1;
}

.history-banner > * {
  position: relative;
  z-index: 2; /* ensures text stays above the gradient */
}

        .history-title {
          font-size: 60px;
          font-weight: 900;
          color: #fff;
          margin-bottom: 20px;
        }
        .history-desc {
          font-size: 20px;
          font-weight: 500;
          color: #fff;
          max-width: 800px;
          margin: 0 auto 30px;
        }
        .history-btn {
          background: #4be000;
          color: #000;
          padding: 12px 40px;
          border-radius: 30px;
          font-weight: 700;
          text-decoration: none;
        }
        .history-content {
          max-width: 1200px;
          margin: 60px auto 0;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 40px;
          padding: 0 40px;
        }
        .history-left {
          border: 2px solid #fff;
          border-radius: 20px;
          padding: 40px;
          background: rgba(255,255,255,0.02);
          backdrop-filter: blur(10px);
        }
        .history-left-title {
          font-size: 32px;
          font-weight: 800;
          color: #fff;
          margin-bottom: 30px;
          text-align: center;
          border-bottom: 2px solid #4be000;
          padding-bottom: 15px;
        }
        .history-left-subtitle {
          font-size: 20px;
          font-weight: 700;
          color: #4be000;
          margin: 25px 0 10px 0;
          padding-left: 10px;
          border-left: 3px solid #4be000;
        }
        .history-left-desc {
          font-size: 16px;
          color: #ddd;
          margin-bottom: 30px;
          line-height: 1.6;
          padding: 0 10px;
        }
        .history-right img {
          width: 100%;
          border-radius: 20px;
          object-fit: cover;
        }
        @media (max-width: 820px) {
          .history-content {
            grid-template-columns: 1fr;
          }
        }
        
        .listeners {
          background: #000;
          color: #fff;
          padding: 60px 0;
          text-align: center;
        }
        .listeners-title {
          font-size: 48px;
          font-weight: 900;
          color: #fff;
          margin-bottom: 40px;
        }
        .listeners-grid {
          max-width: 1200px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 30px;
        }
        .listeners-card {
          background: #000;
          border: 2px solid #fff;
          border-radius: 20px;
          padding: 30px;
        }
        .listeners-stars {
          color: #ff8d00;
          font-size: 24px;
          margin-bottom: 20px;
        }
        .listeners-quote {
          font-size: 16px;
          color: #ddd;
          margin-bottom: 20px;
        }
        .listeners-author {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
        }
        .listeners-author img {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          object-fit: cover;
        }
        .listeners-author-name {
          font-size: 16px;
          font-weight: 700;
          color: #fff;
        }
        @media (max-width: 820px) {
          .listeners-grid {
            grid-template-columns: 1fr;
          }
        }
        

   @media (min-width: 321px) and (max-width: 540px) {

    .now-dash {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: repeating-linear-gradient(to right, #4be000, #4be000 4px, transparent 4px, transparent 8px);
}
.logo-text {
    font-size: 30px;
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 8px;
}
.tw-grid {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 16px;
      padding: 0 12px;
      max-width: none;
      margin: 20px 0;
      scroll-snap-type: x mandatory;
    }
    .tw-card {
      flex: 0 0 80%;
      scroll-snap-align: start;
    }
    .cards-wrap {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 16px;
      padding: 0 12px;
      max-width: none;
      margin: 20px 0;
      scroll-snap-type: x mandatory;
    }
    .afro-card {
      flex: 0 0 80%;
      scroll-snap-align: start;
      min-height: 260px;
    }
   }

  /* ========== Base / Reset-ish ========== */
  :root{
    --lime:#4be000;
    --black:#000;
    --muted:#111;
    --panel-bg: rgba(0,0,0,0.95);
    --glass: rgba(255,255,255,0.03);
    --max-width: 1200px;
    --nav-gap: 40px;
    --ease: cubic-bezier(.2,.9,.2,1);
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html,body{height:100%;font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial}
  body{background:#000;color:#fff;line-height:1.3; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;}
  a{color:inherit;text-decoration:none}

  /* ========== Top thin language/contact bar ========== */
  .top-strip{
    background:var(--lime); /* bright lime */
    color:var(--black);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:6px 18px;
    font-weight:700;
    font-size:14px;
  }
  .top-strip .left, .top-strip .right{display:flex;align-items:center;gap:12px}
  .lang-badge{background:transparent;padding:6px 10px;border-radius:2px}
  .contact-badge{display:flex;align-items:center;gap:8px;padding:6px 10px}

  /* ========== Black header with logo and social/listen ========== */
  .brand-header{
    background:var(--black);
    padding:18px;
    border-bottom:4px solid var(--black); /* keep separation from nav */
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:var(--max-width);
    margin:0 auto;
    gap:18px;
  }
  .brand-left{
    display:flex;
    align-items:center;
    gap:18px;
  }
  .logo-wrap img{
    height:56px; /* matches design */
    display:block;
  }
  /* social + listen area */
  .brand-right{
    display:flex;
    align-items:center;
    gap:14px;
  }
  .social-icons{display:flex;gap:10px;align-items:center}
  .social-icon{
    width:38px;height:38px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
    border:2px solid var(--lime);background:var(--black);color:var(--lime);font-weight:700;font-size:14px;
    text-decoration:none;
  }
  .social-icon svg{width:18px;height:18px;display:block}
  .social-icon:focus{outline:3px solid rgba(75,224,0,0.12);outline-offset:3px}
  .listen-btn{
    background:var(--lime);color:var(--black);padding:10px 18px;border-radius:20px;font-weight:800;border:none;
    display:inline-flex;align-items:center;gap:10px;text-decoration:none;
  }

  /* ========== Green nav bar centered items ========== */
  .nav-bar{
    background:var(--lime);
    display:flex;
    justify-content:center;
    padding:10px 0;
  }
  .nav{
    display:flex;
    gap:var(--nav-gap);
    list-style:none;
    font-weight:700;
    align-items:center;
  }
  .nav a{color:var(--black);text-decoration:none;padding:6px 0}
  .nav a.active { background: var(--black); color: var(--lime); padding: 6px 12px; border-radius: 20px; }

  /* ========== Responsive & Mobile layout ========== */
  /* header container that wraps brand and toggle/menu container */
  .header-row{
    max-width:var(--max-width);
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    gap:12px;
  }

  /* Toggle button (hamburger) */
  .menu-toggle{
    width:54px;height:54px;border-radius:12px;border:none;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    display:inline-grid;place-items:center;cursor:pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6), inset 0 -2px 0 rgba(255,255,255,0.015);
    transition:transform .25s var(--ease), box-shadow .2s var(--ease);
    outline:transparent;
  }
  .menu-toggle:active{transform:translateY(1px)}
  .menu-toggle:focus{box-shadow:0 0 0 4px rgba(75,224,0,0.12)}

  /* icon lines */
  .hamburger{
    width:22px;height:16px;position:relative;display:inline-block;
  }
  .hamburger span{
    position:absolute;left:0;right:0;height:2px;background:var(--lime);display:block;border-radius:2px;
    transition:transform .32s var(--ease), opacity .2s var(--ease), top .32s var(--ease);
  }
  .hamburger span:nth-child(1){top:0}
  .hamburger span:nth-child(2){top:7px}
  .hamburger span:nth-child(3){top:14px}

  /* transform to X when open */
  .menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1){ transform: translateY(7px) rotate(45deg); top:7px; }
  .menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2){ opacity:0; transform:scale(0.9); }
  .menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); top:7px; }

  /* slide-out panel + overlay */
  .menu-overlay{
    position:fixed;inset:0;z-index:1200;pointer-events:none;opacity:0;transition:opacity .32s var(--ease);
    background:rgba(0,0,0,0.45);
  }
  .menu-overlay.visible{pointer-events:auto;opacity:1}

  .side-panel{
    position:fixed;top:0;right:0;height:100vh;width:80%;max-width:420px;background:var(--panel-bg);z-index:1250;
    transform:translateX(110%);transition:transform .4s var(--ease);box-shadow:-12px 0 30px rgba(0,0,0,0.6);
    padding:28px 20px;display:flex;flex-direction:column;gap:18px;
    border-left:1px solid rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(6px);backdrop-filter: blur(6px);
  }
  .side-panel.open{transform:translateX(0)}

  /* close row */
  .panel-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
  .panel-title{font-weight:800;font-size:18px;color:var(--lime)}
  .panel-close{
    width:44px;height:44px;border-radius:10px;border:none;background:transparent;color:var(--lime);font-size:20px;
    display:inline-grid;place-items:center;cursor:pointer;
  }

  /* panel nav links */
  .panel-nav{display:flex;flex-direction:column;gap:10px;margin-top:8px}
  .panel-nav a{
    display:block;padding:14px 16px;border-radius:12px;font-weight:800;background:transparent;color:#fff;
    text-decoration:none;font-size:18px;
  }
  .panel-nav a:hover{background:rgba(255,255,255,0.03)}
  .panel-cta{margin-top:auto;padding-top:10px}
  .panel-cta .listen-btn{display:block;width:100%;text-align:center;font-size:16px;padding:14px;border-radius:12px}

  /* Social row inside panel */
  .panel-social{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:8px;
  }
  .panel-social .social-icon-panel{
    width:48px;height:48px;display:inline-grid;place-items:center;border-radius:10px;background:transparent;border:1px solid rgba(255,255,255,0.04);
    cursor:pointer;transition:transform .18s var(--ease), background .18s var(--ease);
  }
  .panel-social .social-icon-panel svg{width:22px;height:22px;display:block}
  .panel-social .social-icon-panel:focus{outline:3px solid rgba(75,224,0,0.12);outline-offset:3px}
  .panel-social .social-icon-panel:hover{transform:translateY(-4px);background:rgba(255,255,255,0.02)}
  .panel-social-label{font-size:13px;opacity:0.9;margin-left:6px;color:#ddd;font-weight:700}

  /* small device tweaks for very small screens */
  @media (max-width:420px){
    .side-panel{width:90%}
    .hamburger{width:20px}
    .hamburger span{background:var(--lime)}
  }

  /* ========== Layout rules for breakpoints ========== */
  /* Desktop: show full header + centered nav as provided */
  @media (min-width:1024px){
    /* keep nav bar visible and hide toggle */
    .menu-toggle{display:none}
    .menu-overlay{display:none}
    .side-panel{display:none}
    .brand-header{padding:18px 24px}
    .nav-bar{display:flex}
    /* desktop: ensure header social icons visible */
    .brand-right .social-icons{display:flex}
  }

  /* Tablet: show toggle and hide centered nav, but keep header items */
  @media (min-width:768px) and (max-width:1023px){
    .nav-bar{display:none} /* hide centered nav on tablet */
    .menu-toggle{display:inline-block}
    .side-panel{width:360px}
    .brand-header{padding:16px}
    /* hide header social icons on tablet (we want them only inside menu) */
    .brand-right .social-icons{display:none}
  }

  /* Mobile: hide centered nav, show toggle, hide header socials */
  @media (max-width:767px){
    .nav-bar{display:none}
    .menu-toggle{display:inline-block}
    .brand-header{padding:12px 18px}
    .brand-left .logo-wrap img{height:48px}
    /* hide header social icons on mobile */
    .brand-right .social-icons{display:none}
  }

  /* minor aesthetic spacing for nav list when desktop */
  @media (min-width:1024px){
    .nav{gap:36px}
    .brand-right{gap:18px}
  }

  /* Focus styles inside panel */
  .side-panel a:focus, .side-panel button:focus{outline:3px solid rgba(75,224,0,0.12);outline-offset:3px;border-radius:10px}