
:root{
  --bg:#fbf4ea;
  --bg-soft:#fff8ef;
  --panel:#f8efe2;
  --panel-2:#fff7ed;
  --border:#ead6bf;
  --shadow:0 18px 40px rgba(109,75,42,.12);
  --coral:#ff734e;
  --coral-2:#ff865d;
  --brown:#68402d;
  --brown-dark:#4f2d1f;
  --text:#6d4b3d;
  --muted:#8e715d;
  --teal:#0f918d;
  --gold:#f2b73d;
  --footer:#ff7b5f;
  --cream:#fff8ef;
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff8ef 0%,#fbf4ea 100%);
}
img{max-width:100%;display:block}
button,input{font:inherit}

.page-shell{
  max-width:1448px;
  margin:0 auto;
  min-height:100vh;
  border:1px solid #efdcc7;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.7), transparent 45%),
    linear-gradient(180deg,#fffaf3,#faf3e8);
}

.site-header{
  padding:24px 38px 10px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}

.site-brand img{
  width:min(238px,18vw);
  min-width:150px;
}

.header-icons{
  display:flex;
  gap:16px;
  padding-top:10px;
}

.icon-btn{
  width:56px;
  height:56px;
  border-radius:50%;
  border:1.5px solid var(--border);
  background:rgba(255,255,255,.55);
  display:grid;
  place-items:center;
  color:var(--brown);
  cursor:pointer;
  box-shadow:0 3px 10px rgba(150,120,80,.08);
}
.icon-btn svg{
  width:24px;height:24px;
  fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round;
}

.hero-layout{
  display:grid;
  grid-template-columns:170px 1fr 320px;
  gap:26px;
  align-items:start;
  padding:0 38px 24px;
}

.player-panel{
  margin-top:78px;
  background:linear-gradient(180deg,#fbf3e8,#f8efe0);
  border:1.5px solid var(--border);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:24px 16px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  position:relative;
}
.player-panel::before{
  content:"";
  position:absolute;
  left:-36px;
  top:18px;
  width:70px;
  height:95px;
  background-image:radial-gradient(circle, rgba(255,115,78,.5) 1.6px, transparent 1.7px);
  background-size:12px 12px;
  opacity:.6;
}

.round-play,.round-stop{
  width:84px;
  height:84px;
  border-radius:50%;
  border:1.5px solid #efc6aa;
  box-shadow:0 8px 18px rgba(161,106,70,.18), inset 0 2px 5px rgba(255,255,255,.8);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.round-play{
  background:linear-gradient(180deg,#ff8d64,#ff6f4f);
  color:#fff7ed;
  font-size:30px;
}
.round-stop{
  background:linear-gradient(180deg,#fff1e2,#f7ecd9);
  color:#6b4332;
  font-size:22px;
}
.panel-label{
  width:100%;
  text-align:center;
}
.label-title{
  color:#6e4b3a;
  letter-spacing:.08em;
  font-weight:500;
  font-size:15px;
}
.panel-label-stop{margin-top:-2px}

.volume-title{
  width:100%;
  text-align:center;
  color:#6e4b3a;
  font-size:14px;
  margin-top:12px;
  padding-top:18px;
  border-top:1.5px solid #e7cfb5;
}

.volume-control{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  margin-top:6px;
}
.volume-icon{
  font-size:20px;
  color:#744c39;
}
.vertical-slider{
  appearance:slider-vertical;
  -webkit-appearance: slider-vertical;
  width:14px;
  height:140px;
  accent-color:var(--teal);
}

.hero-main{
  text-align:center;
  padding-top:38px;
}
.hero-topline{
  color:var(--coral);
  font-size:30px;
  font-weight:700;
  margin-bottom:12px;
}
.hero-title{
  margin:0;
  color:#633f31;
  font-size:clamp(78px,10vw,138px);
  font-family:"Outfit",sans-serif;
  font-weight:500;
  letter-spacing:-.045em;
  line-height:.95;
  text-shadow:
    0 1px 0 #c9a48a,
    0 2px 0 #b98c70,
    0 3px 0 #996951,
    0 4px 0 #7f533f;
}
.hero-subline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:18px;
  color:#5a3b2c;
  font-size:23px;
  letter-spacing:.42em;
  text-transform:uppercase;
  font-weight:500;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--coral);
  flex:0 0 auto;
}

.hero-radio-wrap{
  position:relative;
  margin-top:24px;
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.bg-dots{
  position:absolute;
  top:130px;
  width:260px;
  height:190px;
  background-image:radial-gradient(circle, rgba(255,135,110,.55) 2.7px, transparent 2.8px);
  background-size:12px 12px;
  opacity:.5;
  filter:blur(.2px);
}
.bg-dots.left{left:40px}
.bg-dots.right{right:56px}
.hero-radio{
  position:relative;
  z-index:2;
  width:min(760px,100%);
  filter:drop-shadow(0 28px 40px rgba(111,76,46,.18));
}

.hero-side{
  padding-top:390px;
  padding-right:18px;
}
.star-mark{
  color:var(--coral);
  font-size:44px;
  line-height:1;
  margin-bottom:10px;
}
.hero-side h2{
  margin:0 0 18px;
  color:#5c3b2d;
  font-size:28px;
  line-height:1.25;
}
.hero-side p{
  margin:0 0 28px;
  font-size:20px;
  line-height:1.65;
  color:#6f5548;
}
.listen-btn{
  border:none;
  background:linear-gradient(180deg,var(--coral-2),var(--coral));
  color:#fff8f1;
  box-shadow:0 10px 20px rgba(255,115,78,.24), inset 0 2px 3px rgba(255,255,255,.2);
  border-radius:999px;
  min-height:56px;
  padding:0 28px;
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
}
.listen-icon{font-size:18px}

.features-row{
  margin:6px 38px 0;
  background:linear-gradient(180deg,#f9f1e6,#fcf7ef);
  border:1.5px solid var(--border);
  border-radius:28px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
}
.feature-card{
  padding:26px 28px;
  display:flex;
  align-items:flex-start;
  gap:18px;
}
.feature-card:not(:last-child){
  border-right:1.5px solid #ead7c2;
}
.feature-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff7ef;
  font-size:28px;
  flex:0 0 auto;
}
.feature-icon.coral{background:#ff784f}
.feature-icon.teal{background:#10928d}
.feature-icon.gold{background:#f2b632}
.feature-icon.brown{background:#6a412e}
.feature-content h3{
  margin:0 0 8px;
  font-size:17px;
  line-height:1.2;
  color:#42302a;
}
.feature-content p{
  margin:0;
  font-size:15px;
  line-height:1.45;
  color:#6f5b51;
}

.bottom-bar{
  margin-top:22px;
  padding:18px 34px;
  min-height:86px;
  background:linear-gradient(180deg,#ff845f,#ff744f);
  display:grid;
  grid-template-columns:240px 1fr 240px;
  align-items:center;
  color:#fff6ef;
}
.socials{
  display:flex;
  gap:14px;
}
.socials a{
  width:42px;height:42px;border-radius:50%;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
  display:grid;place-items:center;
  color:#fff8ef;
  text-decoration:none;
  font-size:21px;
  font-weight:700;
}
.footer-slogan{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.footer-slogan .line{
  height:2px;
  width:120px;
  background:rgba(255,249,240,.75);
}
.slogan-text{
  font-family:"Great Vibes",cursive;
  font-size:44px;
  white-space:nowrap;
}
.copyright{
  text-align:right;
  font-size:18px;
}

@media (max-width:1200px){
  .hero-layout{
    grid-template-columns:150px 1fr 280px;
  }
  .hero-side{
    padding-top:330px;
  }
  .hero-subline{
    font-size:18px;
    letter-spacing:.25em;
  }
  .features-row{
    grid-template-columns:repeat(2,1fr);
  }
  .feature-card:nth-child(2){
    border-right:none;
  }
  .feature-card:nth-child(-n+2){
    border-bottom:1.5px solid #ead7c2;
  }
}

@media (max-width:980px){
  .site-header{
    align-items:center;
  }
  .site-brand img{
    width:180px;
  }
  .hero-layout{
    grid-template-columns:1fr;
    gap:20px;
    padding:0 22px 22px;
  }
  .player-panel{
    margin-top:10px;
    flex-direction:row;
    justify-content:center;
    gap:16px;
    padding:18px;
    flex-wrap:wrap;
  }
  .player-panel::before{
    display:none;
  }
  .volume-title{
    border-top:none;
    padding-top:0;
    margin-top:0;
    width:auto;
  }
  .volume-control{
    flex-direction:row;
    margin-top:0;
  }
  .vertical-slider{
    appearance:auto;
    -webkit-appearance:auto;
    width:160px;
    height:auto;
  }
  .hero-main{
    padding-top:0;
  }
  .hero-topline{
    font-size:24px;
  }
  .hero-subline{
    font-size:15px;
    letter-spacing:.16em;
    gap:10px;
    line-height:1.4;
    flex-wrap:wrap;
  }
  .hero-radio-wrap{
    min-height:auto;
  }
  .bg-dots{
    width:160px;
    height:120px;
    top:95px;
  }
  .hero-side{
    padding:0 6px 0;
    text-align:center;
  }
  .features-row{
    margin:8px 22px 0;
  }
  .bottom-bar{
    grid-template-columns:1fr;
    gap:14px;
    text-align:center;
  }
  .copyright{
    text-align:center;
  }
  .socials,
  .footer-slogan{
    justify-content:center;
  }
}

@media (max-width:640px){
  .site-header{
    padding:18px 18px 8px;
  }
  .header-icons{
    gap:10px;
  }
  .icon-btn{
    width:46px;height:46px;
  }
  .site-brand img{
    width:145px;
  }
  .hero-layout{
    padding:0 14px 18px;
  }
  .hero-topline{
    font-size:18px;
  }
  .hero-title{
    font-size:62px;
  }
  .hero-radio{
    width:100%;
  }
  .hero-side h2{
    font-size:24px;
  }
  .hero-side p{
    font-size:17px;
  }
  .features-row{
    margin:8px 14px 0;
    grid-template-columns:1fr;
  }
  .feature-card{
    border-right:none !important;
  }
  .feature-card:not(:last-child){
    border-bottom:1.5px solid #ead7c2;
  }
  .bottom-bar{
    padding:18px 14px 20px;
  }
  .footer-slogan .line{
    width:40px;
  }
  .slogan-text{
    font-size:32px;
  }
}


/* Uploaded feature icons */
.feature-icon-img{
  width:64px;
  height:64px;
  object-fit:contain;
  flex:0 0 auto;
  border-radius:50%;
  filter:drop-shadow(0 8px 14px rgba(117,73,45,.14));
}


/* Uploaded social icons */
.socials a{
  background:transparent !important;
  border:none !important;
  width:48px;
  height:48px;
  overflow:visible;
}
.socials a img{
  width:48px;
  height:48px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 6px 10px rgba(130,70,45,.18));
  transition:transform .2s ease, filter .2s ease;
}
.socials a:hover img{
  transform:translateY(-2px) scale(1.04);
  filter:drop-shadow(0 9px 14px rgba(130,70,45,.22));
}


/* Compact header refinement */
.site-header{
  padding:14px 38px 0;
  align-items:center;
  min-height:112px;
}

.site-brand img{
  width:min(176px,13vw);
  min-width:128px;
}

.header-icons{
  padding-top:0;
  align-items:center;
}

.hero-layout{
  padding-top:0;
}

.hero-main{
  padding-top:12px;
}

.player-panel{
  margin-top:54px;
}

.hero-topline{
  margin-top:0;
}

@media (max-width:980px){
  .site-header{
    padding:14px 22px 6px;
    min-height:auto;
  }

  .site-brand img{
    width:150px;
    min-width:120px;
  }

  .hero-main{
    padding-top:8px;
  }

  .player-panel{
    margin-top:8px;
  }
}

@media (max-width:640px){
  .site-header{
    padding:12px 16px 4px;
  }

  .site-brand img{
    width:125px;
    min-width:110px;
  }
}


/* Remove underline from Android app button link */
.listen-btn,
.listen-btn:visited,
.listen-btn:hover,
.listen-btn:active{
  text-decoration:none !important;
}
