*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#070b12;
  color:#fff;
  line-height:1.6;
  padding-bottom:175px;
}

a{
  color:inherit;
  text-decoration:none;
}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(7,11,18,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(247,210,122,.18);
}

.nav{
  max-width:1200px;
  margin:auto;
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  color:#f7d27a;
  font-size:18px;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:2px;
}

.menu{
  display:flex;
  gap:24px;
}

.menu a{
  color:#ddd;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:2px;
}

.menu a:hover{
  color:#f7d27a;
}

.hamburger{
  display:none;
  width:34px;
  height:24px;
  flex-direction:column;
  justify-content:space-between;
  background:none;
  border:0;
  cursor:pointer;
}

.hamburger span{
  height:3px;
  width:100%;
  background:#f7d27a;
  border-radius:4px;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:140px 20px 80px;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(5,8,15,.22), rgba(5,8,15,.85));
  z-index:2;
}

.hero-content{
  position:relative;
  z-index:3;
  max-width:950px;
}

.hero h1{
  font-size:clamp(46px,8vw,92px);
  letter-spacing:8px;
  font-weight:300;
  text-transform:uppercase;
  color:#f7d27a;
  text-shadow:0 5px 25px rgba(0,0,0,.55);
}

.hero h2{
  margin-top:14px;
  font-size:clamp(18px,3vw,30px);
  font-weight:300;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 5px 25px rgba(0,0,0,.55);
}

.hero p{
  margin:28px auto 0;
  max-width:760px;
  font-size:18px;
  color:#f2f2f2;
  text-shadow:0 4px 18px rgba(0,0,0,.65);
}

.section{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

.intro{
  max-width:900px;
  text-align:center;
}

.section-title{
  text-align:center;
  margin-bottom:45px;
}

.section-title h2,
.intro h2{
  color:#f7d27a;
  font-size:36px;
  margin-bottom:14px;
}

.section-title p,
.intro p{
  color:#d0d0d0;
  font-size:18px;
}

.lang-switch{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:28px;
}

.lang-switch button{
  padding:9px 18px;
  border:1px solid rgba(247,210,122,.5);
  background:transparent;
  color:#f7d27a;
  cursor:pointer;
  border-radius:22px;
  font-size:12px;
  letter-spacing:1px;
}

.lang-switch button.active,
.lang-switch button:hover{
  background:#f7d27a;
  color:#070b12;
}

.lang-content{
  display:none;
}

.lang-content.active{
  display:block;
}

.tracks{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:35px;
}

.track-card{
  background:linear-gradient(180deg,#111827,#080c14);
  border:1px solid rgba(247,210,122,.25);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(0,0,0,.38);
}

.track-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
}

.track-content{
  padding:24px;
}

.track-content h3{
  color:#f7d27a;
  font-size:28px;
}

.track-content span{
  display:block;
  color:#aaa;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  margin:6px 0 16px;
}

.track-content p{
  color:#d4d4d4;
  font-size:15px;
  margin-bottom:18px;
}

.btn,
.play-fixed-btn{
  display:inline-block;
  margin-top:10px;
  padding:12px 22px;
  border:1px solid #f7d27a;
  border-radius:30px;
  background:transparent;
  color:#f7d27a;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-size:12px;
  transition:.3s;
}

.btn:hover,
.play-fixed-btn:hover{
  background:#f7d27a;
  color:#070b12;
}

.btn.small{
  margin-left:8px;
}

.footer{
  text-align:center;
  padding:55px 20px;
  color:#888;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer strong{
  color:#f7d27a;
}

.back-to-top{
  position:fixed;
  right:22px;
  bottom:185px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(247,210,122,.7);
  background:rgba(7,11,18,.9);
  color:#f7d27a;
  font-size:22px;
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

.back-to-top.show{
  display:flex;
}

.fixed-player{
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  z-index:2000;
  background:rgba(7,11,18,.96);
  border-top:1px solid rgba(247,210,122,.35);
  box-shadow:0 -10px 35px rgba(0,0,0,.55);
  padding:10px 14px;
  backdrop-filter:blur(14px);
}

.fixed-player-info{
  max-width:1200px;
  margin:0 auto 8px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:#f7d27a;
  font-size:13px;
  letter-spacing:1px;
}

.fixed-player-info span{
  color:#ddd;
}

.fixed-player iframe{
  display:block;
  width:100%;
  max-width:1200px;
  margin:auto;
  border:0;
  border-radius:10px;
}

@media(max-width:768px){
  body{
    padding-bottom:185px;
  }

  .hamburger{
    display:flex;
  }

  .menu{
    position:absolute;
    top:70px;
    right:20px;
    left:20px;
    background:rgba(7,11,18,.97);
    border:1px solid rgba(247,210,122,.25);
    border-radius:18px;
    flex-direction:column;
    padding:24px;
    display:none;
  }

  .menu.active{
    display:flex;
  }

  .hero{
    min-height:88vh;
    padding:120px 18px 60px;
  }

  .hero h1{
    letter-spacing:4px;
  }

  .hero p{
    font-size:16px;
  }

  .fixed-player-info{
    flex-direction:column;
    text-align:center;
    gap:2px;
  }

  .back-to-top{
    bottom:195px;
  }
}