/* === UNIVERSAL RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background: #000;
    color: #fff;
    letter-spacing: 0.01em;
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.01em;
    min-height: 100vh;
    position: relative;
}
.hero {
    position: relative;
    padding: 5rem 0 3rem 0;
    overflow: hidden;
    background: #111;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 30px rgba(255,255,255,0.09);
    z-index: 1;
}

.animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 40% at 50% 20%, rgba(255,255,255,0.06) 0%, transparent 100%);
}
.animated-bg::before, .animated-bg::after {
    content: "";
    position: absolute;
    left: 15vw;
    top: 18vh;
    width: 120px;
    height: 120px;
    opacity: 0.13;
    animation: note1 11s linear infinite alternate;
}
.animated-bg::after {
    left: 72vw;
    top: 30vh;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    animation: note2 12s linear infinite alternate;
   
}
@keyframes note1 {
    from { transform: translateY(0) scale(1);}
    to { transform: translateY(-24px) scale(1.1);}
}
@keyframes note2 {
    from { transform: translateY(0) scale(1);}
    to { transform: translateY(28px) scale(1.08);}
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    min-width: 250px;
}
.hero-title {
    margin: 0;
    font-size: 2.6rem;
    letter-spacing: 0.03em;
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    font-weight: 900;
    text-shadow: 0 2px 24px #fff2, 0 1px 2px #000a;
}
.hero-role {
    margin-top: -0.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fbead2;
    letter-spacing: 0.04em;
    text-shadow: 0 0 14px #fff4;
}
.hero-bio {
    text-align: left;
    font-size: 1.17rem;
    color: #fafaff;
    line-height: 1.7;
    max-width: 530px;
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    padding: 1.5rem 0;
    border-left: 2px solid #fff2;
    padding-left: 2.5rem;
}

.bio-intro {
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    .hero-bio {
        border-left: none;
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
        padding-top: 0;
        padding-bottom: 0;
    }
    .hero-info {
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .profile-img {
        width: 125px;
        height: 125px;
    }
    .profile-glow {
        width: 150px;
        height: 150px;
    }
    .hero-title {
        font-size: 1.45rem;
    }
    .hero-role {
        font-size: 1.05rem;
    }
    .hero-bio {
        font-size: 1rem;
        padding: 1.1rem 0 0.6rem 0;
    }
    .hero {
        padding: 2rem 0 2rem 0;
    }
}
.profile-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    box-shadow: 0 0 48px 4px #fff4, 0 4px 32px #000a;
    z-index: 1;
    background: #ff6b61;
}
.profile-glow {
    position: absolute;
    z-index: 0;
    top: 50%; left: 50%;
    width: 235px; height: 235px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff776166 0%, transparent 72%);
    transform: translate(-50%,-50%);
    filter: blur(6px);
    animation: pulseGlow 2.6s infinite alternate;
}
@keyframes pulseGlow {
    from { opacity: 0.68; filter: blur(6px);}
    to { opacity: 1; filter: blur(12px);}
}
.social-links {
    display: flex;
    gap: 1.3rem;
    justify-content: center;
    margin: 1.7rem 0 0 0;
    z-index: 2;
}

.social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border: 1.5px solid #fff3;
    box-shadow: 0 2px 10px #fff2, 0 1px 12px #000a;
    transition: all 0.23s;
    text-decoration: none;
    font-size: 1.32rem;
}
.social:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    box-shadow: 0 4px 30px #fff4, 0 0px 15px #000a;
    transform: scale(1.08);
}
.startpage {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.container-yt {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: center;
}
.inspired {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* === VIDEO / MUSIC SECTIONS === */
.video-panel {
    text-align: center;
    width: 100%;    /* or max-width: 500px; if you want to limit it */
    box-sizing: border-box;
    margin: 0;
    padding: 20px;
    background: #141414;
    border-radius: 16px;
    box-shadow: 0 0 30px #fff1;
    border: 1.5px solid #fff1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}
.video-wrapper-yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  margin: 0 auto;
}
.video-wrapper-yt {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

/* === HEADER === */
header {
    text-align: center;
    padding: 4rem 0;
    background: #111;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 30px rgba(255,255,255,0.07);
    border-bottom: 1.5px solid #fff2;
}

/* === PROFILE IMAGE === 
.profile-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-bottom: 1.5rem;
    object-fit: cover;
    box-shadow: 0 0 24px 2px #fff2, 0 2px 32px #000a;
}

/* === HEADINGS === */
h1, h2, h3, h4 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 24px #fff2, 0 1px 2px #000a;
}

h1 {
    font-size: 2.7rem;
    margin-bottom: 0.8rem;
}

h2.section-heading {
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    position:relative;
    text-align: center !important;
}

.section-heading:after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: #fff5;
    margin: 0.6rem auto;
    border-radius: 2px;
}

/* === BIO SECTION === */
.bio-section {
    background: #191919;
    padding: 3rem 0;
    border-radius: 18px;
    box-shadow: 0 8px 50px #000c;
    border: 1.5px solid #fff1;
}

.bio-content {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    padding-right: 200px;
    gap: 3rem;
    align-items: center;
}

.bio-portrait {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 18px #fff2;
    object-fit: cover;
}

.bio-heading {
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.bio-columns {
    column-count: 2;
    column-gap: 2.3rem;
    column-rule: 1px solid #fff1;
}

.bio-text {
    text-align: center;
}

.bio-text p {
    font-size: 1.13rem;
    line-height: 1.7;
    color: #fafaff;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-weight: 700;
    font-style: italic;
    color: #fff;
}

/* === NAV & SOCIALS ===
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border: 1.5px solid #fff3;
    box-shadow: 0 2px 10px #fff2, 0 1px 12px #000a;
    transition: all 0.23s;
    text-decoration: none;
}

.social:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    box-shadow: 0 4px 30px #fff4, 0 0px 15px #000a;
    transform: scale(1.08);
}
*/
.nav-link {
    background: none;
    color: #fff;
    font-size: 1.13em;
    font-weight: 700;
    padding: 0 16px;
    border: none;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-link:hover {
    color: #eee;
    text-decoration: underline;
}

/* === TRACKS / ALBUM CARDS === */
.track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.track-card {
    background: #131313;
    text-align: center;
    padding: 1.7rem 1.2rem;
    border-radius: 18px;
    border: 1.5px solid #fff2;
    box-shadow: 0 2px 18px #fff1, 0 4px 32px #000b;
    transition: transform 0.18s;
}

.track-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 6px 38px #fff4, 0 2px 20px #000c;
}

.album-cover {
    width: 70%;
    object-fit: cover;
    border-radius: 13px;
    margin-bottom: 2px;
    border: 2px solid #fff;
    box-shadow: 0 0 12px #fff2;
}

audio {
    width: 100%;
    margin-top: 1rem;
    filter: grayscale(100%) contrast(110%);
    background: #000 !important;
    border-radius: 8px;
    box-shadow: 0 0 14px #fff2;
    color-scheme: dark; /* for newer browsers */
}

.song-title {
    color: #fff;
    font-size: 1.19rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.song-title, h3 {
  margin-top: 15px;
}

.genre {
    background: #000000;
    color: #ffffff;
    padding: 0.27rem 1.15rem;
    border-radius: 18px;
    font-size: 0.93rem;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.art {
  color:rgba(255, 255, 255, 0.398);
}

/* === PRICING CARDS === */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: #111;
    padding: 2rem 1rem;
    border-radius: 18px;
    border: 1.5px solid #fff2;
    box-shadow: 0 2px 18px #fff2;
    color: #fff;
    text-align: center;
    transition: transform 0.18s;
}

.pricing-card:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 8px 34px #fff2;
}

.price {
    font-size: 2.3rem;
    color: #fff;
    margin: 1rem 0;
    font-weight: 700;
    text-shadow: 0 1px 16px #fff2;
}

.price-features {
    list-style: none;
    margin: 1.2rem 0;
    text-align: left;
    color: #eee;
}

.price-features li {
    margin: 1rem 0;
    padding-left: 1.1rem;
    position: relative;
}

.price-features li:before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}
/* === PRO PRICING GRID === */
.pro-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin: 4rem 0 2.7rem 0;
  z-index: 2;
  position: relative;
}
.pricing-card {
  background: linear-gradient(130deg, #1c1b18 55%, #2f2c23 100%);
  box-shadow: 0 8px 42px #000a, 0 2px 28px rgba(255, 136, 0, 0.2) 0px 0px 2px #fff2;
  border-radius: 1.6rem;
  border: 1.5px solid #fff2;
  padding: 2.1rem 1.6rem 2.3rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 440px;
  position: relative;
  transition: 
    box-shadow 0.23s cubic-bezier(.4,2,.6,1), 
    transform 0.23s cubic-bezier(.4,2,.6,1);
  overflow: hidden;
}

.pricing-card:hover, .pricing-card:focus-within {
  transform: translateY(-14px) scale(1.025);
  box-shadow: 0 16px 48px #e7b732a1, 0 4px 32px #fff5;
  border-color: #e79332b0;
}

.pricing-card.featured {
  border: 2.5px solid #ffde49;
  box-shadow: 0 16px 68px #ffb3494d, 0 4px 32px #fff5;
}

.pricing-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: linear-gradient(90deg, #fff8cd 10%, rgb(255, 241, 114) 90%);
  color: #1f1d15;
  font-weight: 900;
  font-size: 0.97rem;
  padding: 0.38em 1.2em;
  border-radius: 12px;
  box-shadow: 0 2px 8px #ffbe1938;
  letter-spacing: 0.02em;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  opacity: 0.94;
}

.pricing-card.featured .pricing-badge {
  background: linear-gradient(90deg, #ffe58e 20%, #ffdc42 100%);
  color: #2b2b2b;
}

h3 {
  margin-top: 36px;
  font-size: 1.31rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
  text-shadow: none;
}

.price-tag {
  font-size: 2.1rem;
  font-weight: 900;
  margin: 0.7rem 0 1.1rem 0;
  color: #ffe880;
  text-shadow: 0 2px 14px #f9b03162;
  letter-spacing: 0.01em;
}

.pricing-card.featured .price-tag {
  color: #ffe46d;
  text-shadow: 0 2px 18px #ffe46d77;
}

.price-features {
  list-style: none;
  margin: 0.3rem 0 1.4rem 0;
  text-align: left;
  padding: 0;
  width: 100%;
}
.price-features li {
  margin: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.03rem;
  color: #ffffff;
  line-height: 1.65;
}
.price-features li:before {
  content: "✓";
  color: #ffc23e;
  position: absolute;
  left: 0;
  font-size: 1.19em;
}
.pricing-card.featured .price-features li:before {
  color: #ffd965;
}
.price-features .contact-email {
  padding-left: 0;
  margin-top: 0.2rem;
}
.price-features .contact-email:before {
  content: none !important;
  display: none !important;
}

.price-features .contact-email a {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  word-break: break-all;
  text-shadow: 0 1px 10px #f5bf1e66;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.price-features .contact-email a:hover { text-decoration: underline; }

/* CTA BUTTON */
.pricing-btn {
  margin-top: auto;
  font-size: 1.13rem;
  font-weight: 800;
  padding: 0.8rem 2.2rem;
  border-radius: 19px;
  background: linear-gradient(90deg, #ffe786 20%, #ffb029 100%);
  color: #121212;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px #f5b11e99;
  letter-spacing: 0.03em;
  transition: 
    background 0.2s, 
    color 0.15s, 
    transform 0.17s, 
    box-shadow 0.23s;
}
.pricing-btn:hover, .pricing-btn:focus {
  background: linear-gradient(90deg, #fff7e2 30%, #fff6e2 90%);
  color: #1c1c1c;
  transform: scale(1.06);
  box-shadow: 0 6px 32px #fca62477;
  outline: none;
}

/* Responsive tweaks */
@media (max-width: 1050px) {
  .pro-pricing { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .pro-pricing { grid-template-columns: 1fr; }
  .pricing-card { min-height: 0; }
  .pricing-badge { left: 14px; top: 16px; }
}
/* === SLIDE-IN REQUEST PANEL === */
.request-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(2px);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.request-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.request-panel {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  max-width: 98vw;
  height: 100vh;
  background: rgba(22,22,22,0.98);
  box-shadow: -6px 0 56px #f1df1922;
  border-left: 2.7px solid #fff2;
  border-radius: 20px 0 0 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2.3rem 2.1rem 2rem 2.1rem;
  transition: right 0.33s cubic-bezier(.58,1.6,.45,1);
  overflow-y: auto;
  color: #fff;
}
.request-panel.active {
  right: 0;
}
.request-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.72;
  z-index: 2;
  transition: color 0.14s;
}
.request-close:hover { color: #ffec5d; }
.panel-title {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.7rem;
  color: #fff;
  letter-spacing: 0.025em;
}
#requestForm label {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: #eee;
}
#requestForm input,
#requestForm textarea {
  width: 100%;
  padding: 1em;
  background: #141414cc;
  border: 1.5px solid #f3b33dcc;
  color: #fff;
  border-radius: 13px;
  font-size: 1.07rem;
  margin-top: 0.3rem;
  margin-bottom: 0.1rem;
  resize: none;
  box-shadow: 0 0 8px #19fff311;
  transition: border 0.17s, box-shadow 0.18s;
}
#requestForm input:focus,
#requestForm textarea:focus {
  outline: none;
  border-color: #ffd23e;
  box-shadow: 0 0 15px #ffd91955;
  background: #151717;
}
#requestForm textarea {
  min-height: 42px;
  max-height: 240px;
  overflow-y: auto;
  resize: vertical;
}

/* Submit button */
.submit-request-btn {
  width: 100%;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, #ffef5b 15%, #fff 100%);
  color: #141414;
  font-size: 1.15rem;
  font-weight: 900;
  padding: 1em;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 2px 12px #ffa31955;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.12s, box-shadow 0.16s;
}
.submit-request-btn:hover, .submit-request-btn:focus {
  background: linear-gradient(90deg, #fff 20%, rgb(255, 228, 78) 80%);
  color: #222;
  box-shadow: 0 4px 22px #ffdc1980;
  outline: none;
}

/* Success/Error */
.form-status {
  margin-top: 1rem;
  min-height: 32px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.04rem;
}
.form-status.success {
  color: #2effe7;
  text-shadow: 0 2px 12px #00ffd022;
}
.form-status.error {
  color: #ff7474;
  text-shadow: 0 2px 12px #ff232342;
}

/* Responsive */
@media (max-width: 600px) {
  .request-panel {
    right: -100vw;
    width: 99vw;
    padding: 1.3rem 0.8rem 1.5rem 0.8rem;
    border-radius: 12px 0 0 12px;
  }
  .request-panel.active {
    right: 0;
  }
}

.section-centered {
    text-align: center;
}
.section-centered b {
    color: rgb(255, 228, 96);
    text-shadow: 0 4px 22px #ffdc1980;
}
.copy-popup {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2.8rem;
    background: #191919;
    color: #fff653;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 0.6em 2em;
    border-radius: 13px;
    box-shadow: 0 2px 18px #00000042;
    opacity: 0;
    pointer-events: none;
    z-index: 30;
    transition: opacity 0.4s, top 0.4s;
}
.copy-popup.active {
    opacity: 1;
    top: 4.1rem;
}
.copy-email {
    color: #ffe657;
    transition: color 0.18s, text-shadow 0.19s;
    cursor: pointer;
    text-shadow: 0 2px 14px #fbff0040;
    position: relative;
}
.copy-email:hover, .copy-email:focus {
    color: #ffd965;
    text-shadow: 0 2px 24px #f0ff6555;
}


/* === CONTACT FORM === */
.contact-form {
    background: #191919;
    padding: 2.2rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 2px 18px #fff2;
    border: 1.5px solid #fff2;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: #111;
    border: 2px solid #fff3;
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.25s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #fff;
    background: #222;
}

.submit-btn {
    background: #fff;
    color: #111;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 900;
    font-size: 1.11rem;
    transition: transform 0.19s, background 0.19s, color 0.19s;
    box-shadow: 0 2px 18px #fff2;
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.01);
    background: #111;
    color: #fff;
    box-shadow: 0 6px 24px #fff3;
}

/* === FOOTER === */
footer, .container > p, .container > .social-links {
    color: #fff;
    background: transparent;
    text-align: center;
    font-size: 1rem;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .container { padding: 1rem; }
    .bio-content { flex-direction: column; gap: 2rem; }
    .bio-portrait { width: 150px; height: 150px; }
    .profile-img { width: 180px; height: 180px; }
    h1 { font-size: 1.5rem; }
    .section-heading { font-size: 1.2rem; margin: 2rem 0 1.2rem; }
    .track-card, .pricing-card { padding: 1rem; }
    .price { font-size: 1.5rem; }
    .bio-columns { column-count: 1; }
}

@media (max-width: 480px) {
    .bio-section, .contact-form { border-radius: 11px; margin: 1rem 0; }
    .profile-img, .bio-portrait { width: 110px; height: 110px; }
    h1 { font-size: 1.1rem; }
    .social { width: 28px; height: 28px; }
    .nav-link { font-size: 0.91rem; padding: 6px 10px; }
}
.audio-minimal {
    display: flex;
    align-items: center;
    gap: 0.8em;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 1.5px 9px #fff1;
    padding: 0.7em 1.2em;
    margin-top: 1.3em;
    width: 100%;
    max-width: 330px;
    min-width: 0;
}

.audio-minimal audio {
    display: none;
}

.audio-minimal .playpause {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25em;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    /* REMOVE hover/focus background */
    transition: color 0.15s;
}

.audio-minimal .playpause:hover,
.audio-minimal .playpause:focus {
    background: none;
    color: #fff;
}

.audio-minimal .current, .audio-minimal .duration {
    font-size: 0.99em;
    color: #fff;
    width: 44px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.audio-minimal .seek {
    flex: 1 1 auto;
    margin: 0 0.5em;
    appearance: none;
    background: transparent !important; /* Remove background */
    border-radius: 3px;
    height: 4px;
    min-width: 0;
    outline: none;
    border: none !important;
    box-shadow: none !important;
    /* for Firefox */
    background-color: transparent !important;
}

/* Track - the progress bar itself */
.audio-minimal .seek::-webkit-slider-runnable-track {
    height: 4px;
    background: #fff3;
    border-radius: 2px;
    border: none !important;
    box-shadow: none !important;
}
.audio-minimal .seek::-moz-range-track {
    height: 4px;
    background: #fff3;
    border-radius: 2px;
    border: none !important;
    box-shadow: none !important;
}
.audio-minimal .seek::-ms-fill-lower,
.audio-minimal .seek::-ms-fill-upper {
    background: #fff3;
    border-radius: 2px;
    border: none !important;
    box-shadow: none !important;
}

/* Thumb - the draggable dot */
.audio-minimal .seek::-webkit-slider-thumb {
    appearance: none;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none !important;
    box-shadow: 0 0 6px #fff2;
    margin-top: -5px;
}
.audio-minimal .seek::-moz-range-thumb {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none !important;
    box-shadow: 0 0 6px #fff2;
}
.audio-minimal .seek::-ms-thumb {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none !important;
    box-shadow: 0 0 6px #fff2;
}

.audio-minimal .seek:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff5;
    border: none !important;
}

/* Remove extra border (especially Safari/iOS) */
.audio-minimal .seek::-webkit-slider-thumb {
    border: none !important;
}


/* Remove default border from range input (for Safari) */
.audio-minimal .seek::-webkit-slider-thumb {
    border: none !important;
}

/* Responsive: */
@media (max-width: 600px) {
    .audio-minimal {
        max-width: 100%;
        padding: 0.7em 0.3em;
        gap: 0.45em;
    }
    .audio-minimal .current, .audio-minimal .duration { width: 32px; }
}
.super-contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 360px;
  padding: 3.5rem 0 4rem 0;
  background: none;
  position: relative;
  z-index: 3;
}
.super-contact-card {
  background: linear-gradient(118deg, rgba(28,28,20,0.88) 80%, rgba(54, 45, 1, 0.12) 100%);
  border-radius: 30px;
  box-shadow: 0 8px 44px #ffe65720, 0 3px 18px #fff6, 0 2px 36px #000a;
  border: 1.5px solid #ffe65733;
  max-width: 860px;           /* <<--- DOUBLE WIDTH */
  width: 100%;
  margin: 0 auto;
  padding: 3.4rem 3.1rem 3.1rem 3.1rem;  /* more padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  backdrop-filter: blur(4.5px);
}

.super-contact-icon-bg {
  width: 108px;   /* larger */
  height: 108px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 60% 30%, #ffe65740 44%, #191919 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
  box-shadow: 0 0 40px #ffe65744, 0 2px 16px #ffe65722;
}

.super-envelope-icon {
  display: block;
  filter: drop-shadow(0 2px 12px #ffe65720);
  width: 72px;
  height: 72px;
}

.super-contact-title {
  font-size: 2.05rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #ffe657;
  text-shadow: 0 2px 18px #ffe6571a;
  margin-bottom: 1.4rem;
  text-align: center;
  line-height: 1.16;
}

.super-contact-text {
  color: #fff9da;
  font-size: 1.29rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0 2rem;
}
.super-contact-text b {
  color: #ffe657;
  font-weight: 800;
}

.super-contact-emailrow {
  display: flex;
  align-items: center;
  gap: 1.2em;
  background: rgba(255,230,87,0.12);
  border-radius: 16px;
  padding: 0.56em 2.7em 0.56em 2.7em;
  box-shadow: 0 2px 18px #ffe65716;
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  position: relative;
}
.super-email-top {
  font-family: 'Nunito', monospace, sans-serif;
  font-size: 1.45rem;
  color: #ffe657;
  font-weight: 900;
  letter-spacing: 0.03em;
  user-select: all;
  cursor: pointer;
  border-radius: 7px;
  padding: 0.13em 0.23em;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s;
  text-shadow: 0 1.5px 12px #ffe65740;
  align-items: center;
  background: rgba(255,230,87,0.12);
  border-radius: 16px;
  padding: 0.56em 1em 0.56em 1em;
  box-shadow: 0 2px 18px #ffe65716;
}
.super-email {
  font-family: 'Nunito', monospace, sans-serif;
  font-size: 1.45rem;
  color: #ffe657;
  font-weight: 900;
  letter-spacing: 0.03em;
  user-select: all;
  cursor: pointer;
  border-radius: 7px;
  padding: 0.13em 0.23em;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s;
  text-shadow: 0 1.5px 12px #ffe65740;
  outline: none;
  border: none;
  background: none;
}

.super-email:hover,
.super-email:focus {
  background: #ffe6571c;
  color: #fffde6;
  box-shadow: 0 0 0 2.2px #ffe65744;
}
.super-email-top:hover,
.super-email-top:focus {
  background: #ffe6571c;
  color: #fffde6;
  box-shadow: 0 0 0 2.2px #ffe65744;
}

.super-copy-btn {
  background: none;
  border: none;
  outline: none;
  padding: 6px 4px;
  border-radius: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.16s, box-shadow 0.17s, transform 0.13s;
}
.super-copy-btn:hover, .super-copy-btn:focus {
  background: #ffe65729;
  box-shadow: 0 2px 18px #ffe65755;
  transform: scale(1.18);
}

.super-copy-btn svg {
  display: block;
  filter: drop-shadow(0 1px 4px #ffe65736);
  transition: filter 0.16s;
  width: 34px;
  height: 34px;
}
.super-copy-btn:active svg {
  filter: drop-shadow(0 1px 12px #ffe65760);
}

.super-copied-toast {
  position: fixed;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%) scale(1);
  background: #ffe657ee;
  color: #1b1500;
  font-weight: 900;
  font-size: 1.3rem;
  padding: 1em 2.9em;
  border-radius: 2em;
  box-shadow: 0 8px 28px #ffe6571b;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  transition: opacity 0.34s, bottom 0.48s, transform 0.23s;
  letter-spacing: 0.03em;
  filter: blur(0.1px);
}
.super-copied-toast.active {
  opacity: 1;
  bottom: 92px;
  transform: translateX(-50%) scale(1.08);
}

@media (max-width: 1100px) {
  .super-contact-card {
    max-width: 99vw;
    padding: 2.1rem 0.4rem 2.1rem 0.4rem;
  }
  .super-contact-emailrow {
    padding: 0.44em 1em 0.44em 1em;
    gap: 0.8em;
  }
  .super-contact-title { font-size: 1.32rem;}
  .super-contact-text { font-size: 1.07rem;}
  .super-email { font-size: 1.05rem;}
  .super-envelope-icon, .super-contact-icon-bg { width: 52px; height: 52px;}
}
@media (max-width: 700px) {
  .super-contact-card { padding: 1.1rem 0.1rem 1.1rem 0.1rem; }
  .super-copied-toast { font-size: 1.01rem; padding: 0.6em 1.2em;}
}
.kofi-logo-link {
    display: block;
    margin: 1.4rem 0;
    text-align: center;
    transition: transform 0.2s ease;
}

.kofi-logo-link:hover {
    transform: scale(1.05);
}

.kofi-img {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(255, 136, 0, 0.3));
}
.priceline{
    color: -webkit-link;
    cursor: pointer;
    text-decoration: none;
}
@media (max-width: 700px) {
  .container-yt {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}
.inspired {
  display: grid;
  grid-template-columns: 1fr;
}
}
/* === FILTER BAR === */
.filter-wrap{
  display:flex;
  flex-direction:column;
  gap:0.9rem;
  margin: 0.6rem 0 1.4rem 0;
}
.filter-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
}
.filter-chip{
  appearance:none;
  border:none;
  cursor:pointer;
  padding:0.5rem 0.95rem;
  border-radius:999px;
  background:#151515;
  color:#fff;
  border:1.5px solid #ffffff30;
  box-shadow:0 2px 10px #000a, inset 0 0 0 0 #ffe65700;
  font-weight:800;
  letter-spacing:0.02em;
  transition:transform .12s, box-shadow .18s, border-color .18s, background .18s;
}
.filter-chip:hover{ transform: translateY(-1px); border-color:#ffffff66; }
.filter-chip[aria-pressed="true"]{
  background:#1f1a00;
  border-color:#ffe657aa;
  box-shadow: 0 4px 18px #ffe65733, inset 0 0 0 2px #ffe65755;
  color:#ffe657;
}

.filter-controls{
  display:flex;
  align-items:center;
  gap:0.8rem;
  justify-content:flex-start;
}
.filter-toggle{
  display:flex;
  align-items:center;
  gap:0.45rem;
  user-select:none;
  font-weight:700;
  color:#fff;
}
.filter-toggle input{
  width:18px; height:18px;
  accent-color:#ffe657;
  cursor:pointer;
}
.filter-clear{
  background:none;
  border:1.5px solid #ffffff33;
  color:#fff;
  border-radius:11px;
  padding:0.35rem 0.75rem;
  font-weight:800;
  cursor:pointer;
  transition: background .18s, border-color .18s;
}
.filter-clear:hover{ background:#ffffff12; border-color:#ffffff66; }

/* Graceful hide for filtered cards */
.track-card[hidden]{ display:none !important; }

/* Force 3 columns on desktop, regardless of filters */
.track-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr)); /* fixed 3 */
  gap: 2rem;
  grid-auto-flow: row dense; /* packs items to avoid awkward gaps */
}

/* Optional: responsive fallbacks */
@media (max-width: 1050px){
  .track-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 700px){
  .track-grid{ grid-template-columns: 1fr; }
}

/* keep this so filtered cards vanish cleanly */
.track-card[hidden]{ display:none !important; }
/* === FILTER BAR (grouped) === */
.filter-section { display:flex; flex-direction:column; gap:0.5rem; margin-bottom:0.6rem; }
.filter-section-title{
  font-weight:900; letter-spacing:0.04em; font-size:0.95rem;
  color:#ffe657; text-transform:uppercase; opacity:0.92;
}
.filter-wrap{ display:flex; flex-direction:column; gap:0.9rem; margin:0.6rem 0 1.4rem 0; }
.filter-row{ display:flex; flex-wrap:wrap; gap:0.6rem; }
.filter-chip{
  appearance:none; border:none; cursor:pointer; padding:0.5rem 0.95rem; border-radius:999px;
  background:#151515; color:#fff; border:1.5px solid #ffffff30;
  box-shadow:0 2px 10px #000a, inset 0 0 0 0 #ffe65700;
  font-weight:800; letter-spacing:0.02em;
  transition:transform .12s, box-shadow .18s, border-color .18s, background .18s, color .18s;
}
.filter-chip:hover{ transform:translateY(-1px); border-color:#ffffff66; }
.filter-chip[aria-pressed="true"]{
  background:#1f1a00; border-color:#ffe657aa;
  box-shadow:0 4px 18px #ffe65733, inset 0 0 0 2px #ffe65755; color:#ffe657;
}
.filter-controls{ display:flex; align-items:center; gap:0.8rem; justify-content:flex-start; }
.filter-clear{
  background:none; border:1.5px solid #ffffff33; color:#fff; border-radius:11px;
  padding:0.35rem 0.75rem; font-weight:800; cursor:pointer;
  transition: background .18s, border-color .18s;
}
.filter-clear:hover{ background:#ffffff12; border-color:#ffffff66; }

/* Keep 3 columns (as you asked earlier) */
.track-grid{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:2rem; grid-auto-flow:row dense; }
@media (max-width:1050px){ .track-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:700px){ .track-grid{ grid-template-columns:1fr; } }
.track-card[hidden]{ display:none !important; }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center; /* center align */
}
.filter-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  align-items: center; /* center the section title + row as a block */
}
.filter-section-title {
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: #ffe657;
  text-transform: uppercase;
  opacity: 0.92;
  text-align: center;
}

