*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  background:#0b0b0b;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

.container{
  max-width:1000px;
  margin:0 auto;
  padding:48px 24px;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav a{
  margin-left:16px;
  color:#aaa;
  text-decoration:none;
}

nav a.active,
nav a:hover{
  color:#fff;
}

footer{
  text-align:center;
  opacity:.5;
  padding:24px;
}

/* HOME */
.home{
  margin-top:80px;
}

.home h2{
  font-size:42px;
  margin-bottom:16px;
}

.intro{
  font-size:18px;
  opacity:.85;
  margin-bottom:32px;
}

.home-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.home-btn{
  padding:14px 32px;
  background:#fff;
  color:#000;
  text-decoration:none;
  border-radius:999px;
  font-weight:bold;
}

.home-btn.outline{
  background:transparent;
  color:#fff;
  border:1px solid #fff;
}

/* YOUTUBE */
.youtube-preview{
  position:relative;
  display:block;
  margin-bottom:48px;
  border-radius:16px;
  overflow:hidden;
}

.youtube-preview img{
  width:100%;
  display:block;
  filter:brightness(1.05);
  transition:filter .25s ease;
}

.youtube-preview:hover img{
  filter:brightness(0.75);
}

.play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:72px;
  color:#fff;
  pointer-events:none;
}

/* SPOTIFY */
.spotify{
  width:100%;
  height:380px;
  border:none;
  border-radius:16px;
}

/* SHOP */
.shop{
  text-align:center;
}

.shirt-box{
  width:240px;
  height:320px;
  margin:0 auto 24px;
  background:#1a1a1a;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.6;
}

.buy-button{
  display:inline-block;
  margin-top:16px;
  padding:14px 32px;
  background:#fff;
  color:#000;
  text-decoration:none;
  border-radius:999px;
  font-weight:bold;
}
