.audio-bg-area{content: ' ';
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    /* background-image: url(/wp-content/uploads/2025/08/20250808_1446_Eastfield-Exorcism-Scene_simple_compose_01k24fbm3sew1bbk09nd8f6a4j.png); */
    background-repeat: no-repeat;
    background-position: 0;
    z-index: -1;
    background-size: cover;}

/* Playlist cards */
.gs-playlist { display:flex; flex-direction:column;  }

/* card */
.gs-card { display:flex; gap:18px; align-items:center; background: #111; padding:12px 30px 12px 15px; border-radius:8px; color:#e6eef6; box-shadow: 0 6px 16px rgba(0,0,0,0.6); margin-bottom: 6px;}
.gs-card:hover, .gs-card.active {    background: #890000;}
.gs-left { flex:0 0 110px; display:flex; align-items:center; justify-content:center; position:relative;}
.gs-cover { position:relative; width:50px; height:50px; border-radius:6px; overflow:hidden; }
.gs-cover img { width:100%; height:100%; object-fit:cover; display:block; }

/* play button overlay (left of cover like screenshot) */
.gs-play-btn { position:relative; width:40px; height:40px; border-radius:50%; background:#eee; color: black; border:none; cursor:pointer; box-shadow:0 8px 18px rgba(0,0,0,0.5);}
.gs-play-btn.playing { background:#ca1616; color:#fff; }
.play-btn {    margin-right: 10px;}

/* right column */
.gs-right{ flex:1; min-width:0; display:flex; flex-direction:column; gap:3px;     position: relative;}
.gs-title { font-size:16px; margin:0; color: #cdcdcd; display: -webkit-box;    -webkit-box-orient: vertical;    -webkit-line-clamp: 1;    overflow: hidden;    text-overflow: ellipsis;
    white-space: normal;}
.gs-sub { font-size:13px; color:#9aa6b2; }
.gs-duration {   font-size: 12px;}

/* waveform canvas */
.gs-wave-wrap { position:relative; width:100%; }
.gs-waveform { width:100%; height:72px; display:block; background:transparent; border-radius:4px; }
.gs-wave-time { position:absolute; right:8px; top:6px; color:#9aa6b2; font-size:12px; }

/* actions */
.gs-actions { display:flex; gap:8px; margin-top:5px; }
.gs-action { background:#080808; font-size: 14px; border-radius:8px; padding:5px 10px; border:none; color:#aaaaaa; margin-right: 3px; cursor:pointer; }
.gs-end {    display: flex;    flex-wrap: wrap;    align-items: center;}
button.gs-share {    margin: 0 20px;}
.gs-fav button.gs-icon {    background: none;    border: none;  color: #cdcdcd;  font-size: 18px;}

/* footer player - fixed bottom */
.gs-footer-player { position:fixed; left:0; right:0; bottom:0; background:linear-gradient(180deg, #221414, #520000); padding:0; border-radius:0; display:flex; align-items:center; gap:12px; z-index:10; box-shadow:0 10px 30px rgba(0,0,0,0.6); box-shadow: 0 0 100px 150px rgba(0,0,0,0.6);}
.gs-footer-left {     max-width: 300px; display:flex; gap:10px; align-items:center;     height: 100%; background: linear-gradient(180deg, #5e0000, #8f0000); padding: 15px;}
.gs-footer-thumb { width:80px; height:80px; object-fit:cover; border-radius:6px; }
.gs-footer-title { font-weight:600; color:#fff;display: -webkit-box;   -webkit-line-clamp: 1;   -webkit-box-orient: vertical;    overflow: hidden;    text-overflow: ellipsis; }
.gs-footer-sub { color:#9aa6b2; font-size:13px; }
.gs-footer-center { display: flex; flex-wrap: wrap; align-items: center;  flex-grow: 1; padding: 15px 30px;}
.footer-progress { flex-grow: 1;}
.gs-foot-time {  display: flex;  justify-content: space-between;     margin-top: 7px; font-size: 12px;}

/* center controls */
.gs-foot-btn { background:#12171b; color:#fff; border:none;     padding: 8px 20px;  border-radius: 30px;  cursor: pointer; background-image: -webkit-linear-gradient(-57deg, #ff1e00 0%, #6a0000 100%); }
.gs-foot-progress { flex:1; margin:0; height:6px; background:#2a3136; border-radius:6px; position:relative; cursor:pointer;}
.gs-foot-progress-bar { position:absolute; left:0; top:0; bottom:0; width:0%; background:#b91d1d; border-radius:6px; }
.footer-actions {  padding: 0 60px 0 0}
.footer-actions .gs-foot-btn {  width: 50px; height: 50px;  border-radius: 50%; background: #262626; padding: 0;}
.footer-actions #gs-toggle img {    display: none !important;}
.footer-actions #gs-toggle.is-paused::before {  content: "\f04b"; /* Play icon */  font-family: "Font Awesome 6 Free";  font-weight: 900;}
.footer-actions #gs-toggle.is-playing::before {  content: "\f04c"; /* Pause icon */  font-family: "Font Awesome 6 Free";  font-weight: 900;}
button#gs-toggle {  font-size: 25px;  margin: 0 10px;    width: 65px;    height: 65px;    background-image: -webkit-linear-gradient(-57deg, #ff1e00 0%, #6a0000 100%);}
.gs-footer-right {  padding: 0 50px;}
.gs-foot-progress-bar::after {
    content: "";
    padding: 5px;
    background: #fff;
    height: 10px;
    width: 10px;
    display: block;
    position: absolute;
    border-radius: 50%;
    right: 0;
    top: -3px;
}


.gs-audio-tabs {
  margin: 20px 0;
}

.gs-tab-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  position: relative;
  justify-content:space-around;
}
.gs-tab-nav:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #30455f;
    background-image: linear-gradient(90deg, rgb(86 90 95) 40%, rgb(2 2 2) 100%);
}
.gs-tab-nav li button {
  padding: 8px 10px;
  cursor: pointer;
  color: #bbb;
      position: relative;
    font-weight: 600;
    transition: 0.3s;
    background: none;
    border: none;

}

.gs-tab-nav li button.active {
  color: #f10000;
   transition: 0.3s;
}

.gs-tab-content {
  display: none;
  padding-top: 15px;
  max-height: 600px;
    overflow-y: auto;
}

.gs-tab-content.active {
  display: block;
}
.gs-tab-nav li button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 0%;
    height: 1px;
    background: #b70000;
    z-index: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.gs-tab-nav li button.active::after {
    width: 75%;
}
.gs-playlist { display: none; }
.gs-playlist.visible { display: block; }
.character-bg-area {  background-position: center; background-size: auto; background-repeat: no-repeat;}


/* Base styling */
.gs-tab-content {
  max-height: 600px;       /* limit height */
  overflow-y: hidden;      /* hide scrollbar initially */
  padding-right: 10px;     /* reserve space for scrollbar */
  box-sizing: content-box; /* prevent padding messing layout */
}

/* Show scrollbar only on hover/focus */
.gs-tab-content:hover,
.gs-tab-content:focus-within {
  overflow-y: auto;
}

/* WebKit (Chrome, Edge, Safari) */
.gs-tab-content::-webkit-scrollbar {
  width: 6px;              /* scrollbar width always reserved */
}

.gs-tab-content::-webkit-scrollbar-thumb {
  background-color: #dd0000; /* red scrollbar thumb */
  border-radius: 6px;
}

.gs-tab-content::-webkit-scrollbar-track {
  background-color: #2f2f2f; /* dark grey background */
}

/* Firefox */
.gs-tab-content {
  scrollbar-width: thin;             /* always reserve thin space */
  scrollbar-color: #dd0000 #2f2f2f;  /* thumb + track colors */
}
.audio-bg-area {
  content: ' ';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.20;
    z-index: -1;
    filter: blur(50x);
    -webkit-filter: blur(50px);
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: 190%;
    transition: 0.5s;
}

/* Footer Player Toggle States */
#gs-toggle.is-paused .fa-play {    display: block;}

#gs-toggle.is-paused .fa-pause {    display: none;}
#gs-toggle.is-playing .fa-play {    display: none;}

#gs-toggle.is-playing .fa-pause {    display: block;}

/* Ensure proper icon display */
#gs-toggle i {    font-size: 14px;}

/* Progress bar cursor */
.gs-foot-progress {    cursor: pointer;}

.gs-foot-progress-bar {    transition: width 0.1s linear;}

/* Audio duration styling */
.gs-duration {    font-size: 14px;    color: #666;    font-weight: 500;}

.character-bg-area .main-poster, .character-bg-area .poster-wrap {    aspect-ratio: 16 / 10;}
.character-bg-area .poster-wrap {max-width: 60%; position: fixed;}
.audio-container .poster-wrap {height: auto;}
.audio-container{margin-bottom: 5rem; min-height: 70vh;}
@media (max-width:991px){
  .gs-footer-player{box-shadow: 0 0 60px 90px rgba(0, 0, 0, 0.6);}
  .audio-container.px-5 {    padding-left: 20px !important;    padding-right: 20px !important;}
  .audio-bg-area{opacity: 0.2;}
  .gs-card { flex-direction:row; padding-right: 15px;}
  .gs-left { flex:0 0 0; }
  .gs-cover { width:38px; height:48px; }
  .gs-play-btn {  left: 0;  width: 30px; height: 30px; }
  .gs-footer-left {flex-direction: column;}
  .gs-footer-center{padding: 15px 10px; flex-direction: column;}
  button.gs-share {    margin: 0 12px;}
 .gs-right, .gs-title {    flex-grow: 1;  white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;}
 .footer-actions { display: flex;    align-items: center;    padding: 0;    margin-bottom: 15px; padding: 0; margin-bottom: 15px;}
 .gs-footer-right {display: none;}
 .footer-progress{width: 100%;}
}

@media (max-width:767px){
  .character-bg-area .poster-wrap {    max-width: 100%;}
  .audio-container.row{margin: 0 !important; padding: 0 !important;}
}

@media (max-width:450px){
.gs-cover{display: none;}
.gs-tab-nav li {  padding: 8px 6px;}
}
.gs-arrow-up{    position: absolute;    top: -28px;    right: 50%;}
#btn-audio-toggle{        background: linear-gradient(2deg, #170b0b, #ab1010);    width: 40px;    height: 28px;    border-top-left-radius: 10px;
    border-top-right-radius: 10px;  border: none;}