/*  Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Square+Peg&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

/* Base & Reset */
html { 
    scroll-padding-top: 80px; 
    scroll-behavior: smooth; 
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-style: normal;
    height: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

p {
    color: #191919;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

a:hover {
    text-decoration: none;
}

button {
    transition: all 0.3s ease-out;
    outline: none;
}

button:focus, input:focus {
    outline: none;
}

img {
    max-width: 100%;
}

::selection, *::-moz-selection {
    background: #f29939b3;
    color: #fff;
    text-shadow: none;
    opacity: 1;
}

.mb-60 { margin-bottom: 60px; }
.w-100 { border-radius: 0.8rem; }
.fw-700, .lightest-gray { color: #fff; }
.fw-500 { color: #000; }
.d-block {
    color: black;
    text-decoration: none;
    font-family: "Square Peg", serif;
    font-size: clamp(2.5rem, 2vw + 2rem, 2.5rem);
    font-weight: 500;
}

/* Layout & Backgrounds  */
.main-wraper {
    background: url(../images/bg/slbg.webp);
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;    
}

.bebgadd__box {
    position: relative;
    display: flex;
    justify-content: center;
}

.bebgadd__box::before {
    position: absolute;
    content: "";
    width: 96%;
    height: 30rem;
    background: url(../images/bg/slbg.webp);
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 25px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #f1d4a7 9.21%, rgb(241 149 11 / 85%) 74.89%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    z-index: 1000;
    padding: 1.2rem 0;
}

.header-modern {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.logo h2 {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    text-align: left;
}

.logo h2 a {
    color: #000;
    font-size: clamp(2rem, 3vw, 3rem);
    font-family: "Square Peg", serif;
    text-decoration: none;
}

.brand-logo {
    font-family: "Caveat", sans-serif !important;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000 !important;
    text-decoration: none;
    line-height: 1;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.05);
}

.header-nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.header-nav a:hover,
.header-nav a.active {
    background: #fff;
    color: #000;
}

.nav-link-custom, .nav-item {
    background-color: #2c3e50;
	color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 7px 15px;
	border-radius: 50px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: #d35400;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.search-inline input {
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.15);
}

.search-inline input[type="search"] { 
    padding: .48rem .8rem; 
    border-radius: 8px; 
    border: 1px solid rgba(0,0,0,.08); 
    min-width: 240px; 
}

.search-modern {
    position: relative;
    width: 240px;
}

.search-modern input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: #f9f9f9;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-modern input:focus {
    background: #fff;
    border-color: #ff9800;
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.1);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
}

.header-btn {
    text-align: right;
}

.header-btn a:hover {
    background: #fff;
    color: #000 !important;
    text-decoration: none;
}

.btn-contact-modern, .header-btn a {
    background-color: #2c3e50;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-contact-modern:hover{
    background-color: #d35400;
    transform: translateY(-2px);
    color: #fff !important;
}

.lang-toggle {
    float: right;            
    margin-left: 1rem;         
    margin-bottom: 0.5rem;  
    shape-outside: margin-box; 
    background: #f8f9fa;
    border: 1px solid #a6abaf;
    border-radius: 50px;
    padding: 2px;
    display: inline-flex;     
}

.lang-toggle button {
    border: none;
    background: transparent;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6c757d;
    cursor: pointer;
}

.lang-toggle button.active {
    background: white;
    color: #198754; 
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.lang-content {
    display: block;
    line-height: 1.6;
}

/*  Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.mobile-nav-link:hover {
    color: orange;
}

.mobile-nav-item {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8) rotate(180deg);
}

.mobile-menu.active .mobile-close {
    opacity: 1;
    transform: scale(1) rotate(0);
    transition-delay: 0.3s;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(90deg);
}

.mobile-close::before, .mobile-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: inherit;
}

.mobile-close::before { transform: rotate(45deg); }
.mobile-close::after  { transform: rotate(-45deg); }

.mobile-close:hover::before, .mobile-close:hover::after {
    width: 24px;
    background: #ff6b6b;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(2 12 38 / 80%);
    transition: background 0.3s ease;
}

.mobile-toggle:hover {
    background: rgb(2 12 38 / 95%);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2.5px 0;
    border-radius: 3px;
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Hero & Content */
.hero-area {
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-caption h2 {
    font-size: clamp(1.5rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #444;
    line-height: 45px;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
}

.hero-caption p {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 30px;
}

.icon {
    width: 70px;
    height: 70px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
    color: #fff;
    font-size: 22px;
    position: relative;
    border: 8px solid #fffc;
    box-sizing: border-box;
}

.subtitle {
    margin: 0;
}

.gmail a {
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 21px;
    display: inline-block;
}

.breadcrumb-current::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #F44336;
    border-radius: 1px;
}

.grid-heading {
    padding: 1.5rem;
    margin: 0 0 1.5rem 0;
    font-family: "Square Peg", serif;
}

.grid-heading h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

/* Cards & Grid System */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 25px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px;
    max-width: 1400px;
    width: 100%;
}

@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }

/* Story Card */
.story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;   
    width: 100%; 
    min-width: 0;     
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.story-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 3;
    overflow: hidden;
}

.story-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-card:hover .story-card-image-wrapper img {
    transform: scale(1.08);
}

.story-play-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    background: #ff9800;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    text-decoration: none;
    border: 3px solid #fff;
}

.story-play-btn i { color: #fff; }

.story-card:hover .story-play-btn {
    background: #ff9800;
    transform: scale(1.1) rotate(5deg);
}

.story-card-content {
    padding: 1.5rem 1.25rem 1.25rem;
    background: #fffaf4;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.story-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 0.5rem;
    display: block;
}

.story-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.2rem, 0.8945rem + 0.9776vw, 1.5rem);
    line-height: 1.1;
    color: #451d00;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.story-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;       
    overflow: hidden;          
    text-overflow: ellipsis; 
    max-width: 80%;
}

.story-meta i {
    color: #040404;
    font-size: 1.3rem;
}

.popular-song-container {
    position: relative;
    width: 300px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;    
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: block;
}

.popular-song-container:hover {
    transform: translateY(-5px);
}

.top-pill {
    position: absolute;
    top: 16px;
    left: 0; right: 0; margin: 0 auto;
    width: fit-content;
    max-width: 85%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;    
    color: #333;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottom-glass {
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px; 
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 20;
    overflow: hidden;
}

.bottom-glass > div {
    width: 90%;
    overflow: hidden;
}

.bottom-glass .subtitle {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    z-index: -10;
}

.card-fade { transition: opacity .36s cubic-bezier(.2,.9,.2,1), transform .36s cubic-bezier(.2,.9,.2,1); opacity:1; transform: none; }
.card-hidden { opacity:0; transform: translateY(10px) scale(.995); pointer-events:none; }
.highlight { background: #ffeb8a; padding:0 .15rem; border-radius:2px; color:#000; }
.load-more-wrap { text-align:center; margin:2rem 0; }
.btn-load { background:#2b2b2b; color:#fff; padding:.6rem 1rem; border-radius:40px; border:none; cursor:pointer; }

/* Audio Player */
.play-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.play-btn i { color: #000; }

#play-pause-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 0;
    background: #000;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in;
    border: none;
}

#play-pause-btn:hover { transform: scale(1.05); }
#play-pause-btn i { color: #fff; }

/* Fixed Bottom Player */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff9ec;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 1000;
    flex-wrap: wrap;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    color: black;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 250px;
}

.track-info img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    object-fit: cover;
}

.track-info .text p { margin: 0; }
.track-info .text p:first-child { font-weight: bold; font-size: 1.1rem; color: #000; }
.track-info .text p:last-child { font-size: 0.9rem; opacity: 0.8; color: #000; }

.player-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.player-controls button {
    background: none;
    border: none;
    color: #640202;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    display: flex;
    justify-content: center;
}

.progress-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 2;
    max-width: 300px;
}

.progress-bar {
    background: rgba(39, 39, 39, 0.44) !important;
    border-radius: 5px;
    flex: 1;
    height: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar:hover { background: rgba(39, 39, 39, 0.34); }

.progress {
    background: rgb(57, 36, 36) !important;
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s;
}

.volume-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
    min-width: 120px;
}

#volume {
    width: 120px;
    background: #444;
    height: 6px;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #f29939;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

#volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #f29939;
    border-radius: 50%;
    cursor: pointer;
}

.audio-bar {
    position: relative;
    margin-left: clamp(218px, 13.438vw, 500px);
}

.track-container {
    position: relative;
    display: inline-block;
}

.track-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.circular-progress {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.progress-circle {
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.playlist-banner {
    position: relative;
    border-radius: clamp(18px, 1.25vw, 96px);
    max-width: 100%;
    margin: 0 auto;
    top: 95px;
}

.playlist-banner img {
    min-height: 420px;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    border-radius: clamp(18px, 1.25vw, 96px);
}

.banner-text {
    position: absolute;
    top: 85%;
    left: 22%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: 1rem 0;
}

.text, .marquee { overflow: hidden; }
.marquee {
    white-space: wrap;
    box-sizing: border-box;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

#track-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

#track-artwork {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.rotating { animation: rotate 20s linear infinite; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer */
.footer { padding: 30px 0px; }
.footer__section { padding: 5rem 0 0 0; }
.footer__section-1 { padding: 5rem 0 5rem 0; }
.footer__top { padding: 80px 0 40px; }

.footer__streamio {
    padding: 0 55px;
    border-left: 1px dashed #212529;
    border-right: 1px dashed #212529;
}

.social {
    margin-bottom: 24px;
    padding: 2rem 0;
}

.social li { display: inline-block; }

.social li a {
    display: inline-block;
    text-decoration: none;
}

.social li a i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ff9800;
    margin: 0 4px;
    color: #fff;
    transition: all .3s ease-in-out;
}

.copyright p {
    font-size: 14px;
    color: #333;
}

.copyright p a {
    color: #333;
    font-weight: 600;
}

.pra {
    color: #000;
    text-decoration: none;
    font-family: "Caveat", serif;
    font-size: clamp(1.5rem, 2vw + 1.5rem, 1.2rem);
}

.white {
    color: #451d00;    
    font-family: "Caveat", serif;
    font-size: clamp(1.5rem, 2vw + 2rem, 2rem);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 1rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #F39F5F 4.85%, rgba(201, 203, 223, 0) 96.39%);
    border-image-slice: 2;
    display: inline-block;
}

.white-head {
    font-family: "Caveat", serif;
    font-size: clamp(1.5rem, 2vw + 2rem, 2rem);
    font-weight: 500;
    color: #451d00;
    text-decoration: none;
}

.footer__widget .link__attach {
    gap: 64px;
    font-family: "Caveat", serif;
    font-size: clamp(1.5rem, 2vw + 1.5rem, 1.8rem);
}

.footer__form { margin-top: 60px; }
.footer__form input {
    width: 100%;
    border: unset;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 16px 24px;
    font-family: "Poppins", sans-serif;
    background: #232627;
    transform: skewX(15deg);
}

.footer__widget .footer__form ::-moz-placeholder { transform: skewX(-15deg); color: #fff; }
.footer__widget .footer__form ::placeholder { transform: skewX(-15deg); color: var(--white); }

.footer__widget .footer__form button {
    background: #000;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #fff;
    transform: skewX(15deg);
}
.footer__widget .footer__form button span { transform: skewX(-15deg); display: block; }

.quick__space { padding-right: 4rem !important; }
.footercontact__link { padding-left: 2rem !important; }
.footer__streamio .level__message { max-width: 200px; margin: 0 auto; }

.footer__bottom {
    padding: 30px 0 30px;
    justify-content: space-between;
    border-top: 1px solid #212529;
}
.footer__bottom p .design__side {
    border-left: 1px solid #212529;
    padding-left: 12px;
    margin-left: 12px;
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 3rem;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #640202;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn:hover, .scroll-top-btn:focus {
    background: #640202;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* VTT, Transcripts & Tabs  */
.user-info { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; }
.username { font-weight: 600; }
.follow-btn {
    background: #1db954;
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}
.follow-btn:hover { background: #1ed760; }
.timestamp { font-size: 0.875rem; color: #888; }
.more-actions { display: flex; gap: 1rem; }
.icon-btn { background: none; border: none; color: #888; cursor: pointer; font-size: 1.1rem; }
.hero { margin: 3rem 0; }
.title {
    font-size: 2rem;
    font-family: "Caveat", sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    padding: 1.5rem 0;
}
.player-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.cover-art {
    width: 15rem;
    height: 15rem;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    background: #fff;
}
.waveform {
    flex: 1;
    width: 100%;
    min-width: 300px;
    position: relative;
    height: 9rem;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}
#waveform-canvas { width: 100%; height: 100%; }
.progress-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #333;
    cursor: pointer;
}
.progress-fill {
    height: 100%;
    background: #1db954;
    width: 0;
    transition: width 0.1s linear;
}
.progress-handle {
    position: absolute;
    top: -6px;
    width: 16px;
    height: 16px;
    background: #1db954;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
}
.waveform:hover .progress-handle { opacity: 1; }
.controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.control-btn {
    background: #222;
    color: #aaa;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.control-btn:hover { background: #333; color: white; }

/* Tabs */
.tabs {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2px;
    padding-top: 3rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    background: transparent;
}
.tabs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #dedede;
    z-index: 1;
}
.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
    background: none;
    border: none;
    color: #888;
    padding: 1rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.tab-btn::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: #1db954;
    transition: width 0.3s ease;
}
.tab-btn.active, .tab-btn:hover { color: #000; }
.tab-btn.active::after { width: 100%; }
.tab-content { padding: 1.5rem 0; position: relative; }
.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
    position: relative;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

#transcript-lines {
    font-family: monospace;
    line-height: 2;
    white-space: pre-wrap;
}
.cue {
    padding: 0.4rem 0;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.cue {
  transition: all 0.2s;
  opacity: 0.6; 
  line-height: 1.8;
}

.cue.active {
  opacity: 1;
  font-weight: 500;
}

#transcript-lines span {
  margin: 1px 4px 0 3px;
  border-radius: 50px;
  transition: background-color 0.1s, color 0.1s;
}

.active-word {
    background-color: #ffa060;
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(53, 53, 53, 0.5);
    border-radius: 50px;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #222;
    color: #ddd;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
    padding: 0;
}
.nav-btn:focus { outline: 2px solid rgba(29, 185, 84, 0.18); outline-offset: 2px; }
.nav-btn:hover { transform: translateY(-3px); background: #2b2b2b; color: #fff; }
.nav-btn:active { transform: translateY(0); }

@media (max-width: 1800px) {
    .footer__widget .link__attach { gap: 20px; }
}

@media (max-width: 1600px) {
    .footer__widget .link__attach { flex-wrap: wrap; }
}

@media (max-width: 1199px) {
    .footercontact__link { padding-left: 10px; }
    .footer__streamio { padding: 0 10px; }
}

@media (max-width: 992px) {

    .header-nav, .search-inline, .d-sm-block, .header-btn { display: none !important; }
	.btn-contact-modern{display: none !important;}
    .mobile-toggle { display: flex; }
    .mobile-menu-toggle { display: flex !important; }
    .footercontact__link { padding-top: 30px; padding-left: 10px !important; }
}

@media (max-width: 768px) {
    .circular-progress { display: block; }
    .header-btn a { letter-spacing: 0; }
    .count-down-area ul li { margin: 0.8rem; }
    .volume-controls { display: none; }
    
    .track-info {
        flex-direction: row;
        align-items: center;
        text-align: center;
        justify-content: center;
        gap: 10px;
        min-width: 0px;
        flex-grow: 1;
        overflow: hidden;
    }

	.audio-player {
        background: #fff9ec;
        border-radius: 50px;
        padding: 15px;
        gap: 15px;
        display: flex;
        align-items: center;
        color: white;
        max-width: 100%;
        margin: 10px;
        overflow: hidden;
    }
    
    .text { flex-grow: 1; overflow: hidden; }
    #track-artist { margin: 0; font-size: 14px; opacity: 0.8; display: none; }
    
    .player-controls {
        display: flex;
        gap: 20px;
        margin-left: auto;
    }
    
    .player-controls button {
        background: none;
        border: none;       
        font-size: 20px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #play-pause { background: rgba(255, 255, 255, 0.2); }

    .progress-area { order: 1; margin: 10px 0; width: 100%; display: none; }
    .progress-bar {
        flex: 1;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        cursor: pointer;
        position: relative;
    }
    .progress {
        background: #f29939 !important;
        border-radius: 2px;
    }

    .search-inline input[type="search"] { min-width: 120px; }
    .footer-inner { padding: 0 1rem; }
    .dark-footer { text-align: center; }
    .footer-col { margin-bottom: 1.25rem; }
    .quick__space { padding-right: 15px; }
    .footer__bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        text-align: center;
        padding: 20px 0;
    }

    .waveform { height: 6rem; }
}

@media (max-width: 640px) {
    .player-container { flex-direction: column; align-items: center; }
    .cover-art { width: 150px; height: 150px; }
    .title { font-size: 1.5rem; }
    .controls { gap: 1rem; }
    .footer__widget .text-center{text-align: left;}
    .footer__widget{padding: 0 0 0 1.2rem;}
}

@media (max-width: 600px) {
    .logo h2 { text-align: center; }
    .header-btn { display: none; }
}

@media (max-width: 575px) {
    .footer__streamio {
        padding: 1rem 10px;
        border-left: none;
        border-right: none;
        border-top: 1px dashed;
        border-bottom: 1px dashed;
    }
    .footer__streamio .footer__widget { text-align: left !important; }
    .footer__streamio .footer__widget img { margin-bottom: 10px; }
    .footer__streamio .footer__widget a { margin-bottom: 10px; }
    .footer__streamio .level__message { margin: 0 0; text-align: left; }
}

@media (max-width: 480px) {
    .scroll-top-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 470px) {
    .footer__bottom { gap: 6px; }
    .footer__bottom p { font-size: 10px; }
    .footer__bottom ul li a { font-size: 10px; }
}