 /* Reset-ish */
    *{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}

    /* Top thin language/contact bar */
    .top-strip{
      background:#4be000; /* bright lime */
      color:#000;
      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:#000;
      padding:18px;
      border-bottom:4px solid #000; /* keep separation from nav */
      display:flex;
      align-items:center;
      justify-content:space-between;
    }
    .brand-left{
      display:flex;
      align-items:center;
      gap:18px;
    }
    .logo-wrap img{
      height:56px; /* matches screenshot visual */
      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 #4be000;background:#000;color:#4be000;font-weight:700;font-size:18px;
      text-decoration:none;
    }
    .listen-btn{
      background:#4be000;color:#000;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:#4be000;
      display:flex;
      justify-content:center;
      padding:10px 0;
    }
    .nav{
      display:flex;
      gap:40px;
      list-style:none;
      font-weight:700;
      align-items:center;
    }
    .nav a{color:#000;text-decoration:none;padding:6px 0}
    .nav a.active { background: #000; color: #4be000; padding: 6px 12px; border-radius: 20px; }

    /* HERO area */
    .hero{
      max-width:1200px;
      margin:40px auto;
      padding:0 18px;
      display:flex;
      gap:48px;
      align-items:center;
    }

    /* left card + text */
    .story-left{
      position:relative;
      width:48%;
      min-width:320px;
    }

    /* three-stripe accent image positioned to the left of the pink card */
    .stripe-accent{
      position:absolute;
      left:-40px;
      top:10px;
      width:60px;
      height:auto;
      transform:rotate(0deg);
    }

    .pink-card{
      background:#e43aa1; /* vivid magenta */
      color:#fff;
      padding:42px 36px;
      border-radius:36px;
      width:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      height:220px;
    }
    .pink-card h1{
      font-size:64px;
      line-height:0.95;
      letter-spacing:1px;
      margin:0;
      font-weight:900;
    }

    .story-desc{
      margin-top:18px;
      color:#e6e6e6;
      font-size:16px;
      max-width:420px;
    }

    /* Right image with very rounded corners (ellipse like) */
    .story-right{
      width:52%;
      min-width:380px;
      display:flex;
      justify-content:flex-end;
    }
    .studio-img{
      width:100%;
      max-width:520px;
      aspect-ratio: 16/10;
      object-fit:cover;
      border-radius:80px;
      display:block;
      box-shadow: 0 6px 18px rgba(0,0,0,0.6);
      border:8px solid #000; /* black frame similar to screenshot */
    }

    /* Responsiveness */
    @media (max-width:1024px){
      .hero{flex-direction:column;gap:22px;align-items:flex-start;max-width:920px}
      .story-left,.story-right{width:100%;min-width:unset}
      .pink-card{height:200px}
      .pink-card h1{font-size:56px}
      .studio-img{max-width:100%}
      .stripe-accent{left:-28px;top:6px;width:46px}
    }
    @media (max-width:520px){
      .pink-card{padding:28px 22px;border-radius:26px;height:170px}
      .pink-card h1{font-size:44px}
      .top-strip{font-size:13px;padding:6px 12px}
      .brand-header{padding:12px}
      .logo-wrap img{height:48px}
      .nav{gap:18px;font-size:14px}
    }
    /* WHO WE ARE styles — add to your stylesheet */
.who-we-are{
  background: #000;
  color: #fff;
  padding: 60px 18px 90px; /* room below for next section */
}
.who-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:48px;
  align-items:center;
  justify-content:space-between;
}

/* LEFT column */
.who-left{ width:52%; min-width:320px; }

/* Big green headline */
.who-title{
  color:#4be000;
  font-size:96px;
  font-weight:900;
  margin:0 0 18px 0;
  line-height:0.9;
  letter-spacing:-1px;
}

/* subtitle + dashed rule */
.who-subrow{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}
.who-subtitle{
  color:#4be000;
  font-weight:800;
  font-size:16px;
  white-space:nowrap;
}
.who-dash{
  flex:1;
  height:3px;
  border-bottom:4px dashed #4be000;
  opacity:0.95;
}

/* body text */
.who-body{ margin-top:6px; color:#e6e6e6; font-size:16px; line-height:1.6; max-width:620px; }
.who-body p{ margin:14px 0; }

/* RIGHT column — big rounded image */
.who-right{ width:48%; min-width:380px; display:flex; justify-content:flex-end; }
.who-img{
  width:100%;
  max-width:560px;
  aspect-ratio: 16/10;
  object-fit:cover;
  border-radius:80px;
  display:block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  border:8px solid #000;
}

/* Responsive */
@media (max-width:1024px){
  .who-inner{ flex-direction:column-reverse; gap:28px; align-items:flex-start; max-width:920px }
  .who-left, .who-right{ width:100%; min-width:unset }
  .who-title{ font-size:64px }
  .who-img{ max-width:100% }
}
@media (max-width:520px){
  .who-title{ font-size:44px }
  .who-subrow{ gap:12px }
  .who-dash{ border-bottom-width:3px }
  .who-we-are{ padding:36px 12px 60px }
  .who-body{ font-size:15px }
}
/* HISTORY SECTION STYLES */
.history-section{ background:#000; color:#fff; padding:48px 18px 80px; }
.history-inner{ max-width:1200px; margin:0 auto; display:flex; flex-direction:column; gap:36px; }

/* Top image (large rounded) */
.history-top-img{
  width:100%;
  height:auto;
  max-height:420px;
  object-fit:cover;
  border-radius:36px;
  display:block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  border:8px solid #000; /* black frame like other hero images */
}

/* lower row */
.history-row{
  display:flex;
  gap:36px;
  align-items:center;
  justify-content:space-between;
}

/* left thumbnail image */
.history-left{ width:48%; min-width:260px; display:flex; justify-content:flex-start; }
.history-left-img{
  width:100%;
  max-width:420px;
  aspect-ratio: 4/3;
  object-fit:cover;
  border-radius:28px;
  display:block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  border:8px solid #000;
}

/* right area (card + accent) */
.history-right{ width:52%; position:relative; display:flex; justify-content:flex-end; align-items:flex-start; min-width:300px; }

/* stripe accent image positioned above/right of the card */
.history-stripes{
  position:absolute;
  right:-10px;
  top:-12px;
  width:44px;
  height:auto;
  transform:rotate(10deg);
  pointer-events:none;
}

/* history card */
.history-card{
  background:#0b0b0b; /* slightly different black to show edge if needed */
  border-radius:22px;
  padding:26px 26px;
  max-width:520px;
  width:100%;
  box-sizing:border-box;
  border:3px solid rgba(255,255,255,0.12);
  /* white outline inner stroke similar to design: use box-shadow inset */
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04), 0 6px 18px rgba(0,0,0,0.6);
}

/* white rounded outline inside (look like a white border inset) */
.history-card h3{
  margin:0 0 12px 0;
  color:#fff;
  font-size:22px;
  font-weight:800;
}
.history-card p{
  margin:0;
  color:#fff;
  font-size:16px;
  line-height:1.6;
  font-weight:700;
}

/* small decorative white triangular accent to the card's top-right (optional enhancement)
   If you prefer the exact small triangles from design, replace with an image and remove this block. */
.history-right::after{
  content: "";
  position: absolute;
  right: 12px;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 18px solid rgba(255,255,255,0.95);
  transform: rotate(25deg);
  opacity: 0; /* keep invisible since stripes image is used — leave for future use */
}

/* RESPONSIVE */
@media (max-width:1024px){
  .history-row{ flex-direction:column; gap:22px; align-items:flex-start }
  .history-left, .history-right{ width:100%; min-width:unset }
  .history-left-img{ max-width:60%; }
  .history-stripes{ right:8px; top:-10px; width:36px; transform:rotate(8deg) }
  .history-card{ max-width:100% }
}
@media (max-width:520px){
  .history-top-img{ border-radius:20px; max-height:300px }
  .history-left-img{ border-radius:18px; max-width:100% }
  .history-card{ border-radius:16px; padding:18px }
  .history-card h3{ font-size:18px }
  .history-card p{ font-size:15px }
  .history-section{ padding:28px 12px 48px }
}
/* FEATURES SECTION STYLES (based on first image design) */
.features-section {
  background: #000;
  color: #fff;
  padding: 60px 18px 80px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.features-top-row,
.features-bottom-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.mic-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  max-width: 500px;
  transform: scale(1.3) rotate(-20deg);
  transform-origin: bottom left;
  pointer-events: none;
  z-index: 0; /* put mic behind everything */
  opacity: 0.3; /* optional, makes it more like a background */
}

.green-box {
  flex: 0 0 calc(50% - 10px);
  margin-left: auto;
  background: #4be000;
  color: #000;
  padding: 24px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pink-box {
  flex: 1;
  background: #e43aa1;
  color: #fff;
  padding: 24px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.black-box {
  flex: 1;
  background: #000;
  color: #fff;
  padding: 24px;
  border-radius: 30px;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px 0;
}
.features-box p {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}
/* Responsive for features */
@media (max-width: 1024px) {
  .features-top-row,
  .features-bottom-row {
    flex-direction: column;
    gap: 16px;
  }
  .mic-img {
    width: 60%;
    max-width: 200px;
    margin-left: 0;
    margin-top: 0;
    transform: scale(1.1) rotate(-10deg);
    transform-origin: bottom left;
  }
}
@media (max-width: 520px) {
  .features-section { padding: 36px 12px 60px; }
  .features-box h3 { font-size: 20px; }
  .features-box p { font-size: 15px; }
  .green-box, .pink-box, .black-box { padding: 18px; border-radius: 20px; }
}

/* LANDSCAPE SECTION STYLES (based on second image) */
.landscape-section {
  background: #000;
  padding: 60px 18px 80px;
}
.landscape-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.landscape-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50px;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  border: 8px solid #000;
}
/* Responsive for landscape */
@media (max-width: 1024px) {
  .landscape-img { border-radius: 40px; }
}
@media (max-width: 520px) {
  .landscape-section { padding: 36px 12px 60px; }
  .landscape-img { border-radius: 30px; }
}

/* 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;
}

/* Responsive for footer */
@media (max-width: 1024px) {
  .on-air-row {
    flex-direction: column;
    gap: 20px;
  }
  .logo-side {
    text-align: center;
  }
  .footer .social-icons {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .footer { padding: 40px 12px 30px; }
  .footer-title { font-size: 24px; }
  .footer-sub { font-size: 14px; }
  .now-on-air { font-size: 16px; padding: 6px 20px; }
  .now-stripe { width: 30px; left: -30px; }
  .on-air-card { flex-direction: column; text-align: center; }
  .on-air-card img { width: 100px; height: 100px; }
  .logo-text { font-size: 30px; }
  .listen-now { padding: 10px 30px; font-size: 16px; }
}


   @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;
}
   }