* {
  margin: 0PX;
  padding: 0PX;
  box-sizing: border-box;
}
h1,h2,h3,.category-buttons{
   font-family: "Protest Riot", sans-serif;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #1a0033, #000000);
  color: white;
   display: flex;
  justify-content: center;
}
main {
  background: linear-gradient(to bottom, #1a0033, #000000);
  width: 500mm;
  height: 500mm;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}
nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: absolute;
  right: 3%;
}

nav a {
  background: #a366ff;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  transition: 0.3s;
text-decoration:none;
}

nav a:hover {
  background: #d1b3ff;

}
h1 {
  padding: 80px;
  font-size: 5rem;
  margin-top: 0px;
  font-weight: bold;
  text-align: center;
}

h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}
.about-box {
  background: white;
  color: black;
  padding: 10px;
  margin: 0 auto 20px;
  max-width: 1200px;
  border-radius: 10px;
  line-height: 30PX;
}
.thought-box {
  background: white;
  color: black;
  padding: 12px;
  margin: 100px;
  text-align: center;
  max-width: 1500px;
  border-radius: 25px;
  position: relative;
  font-weight: bold;
}

.thought-box:before {
  content: "TODAY'S THOUGHT";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 12px;
  font-size: 2rem;
  border-radius: 15px;

}
.category-buttons {
  font-family:"Protest Riot", sans-serif ;
  display: flex;
  justify-content: center;
  gap: 150px;
  margin-top: 50px;
}

.category-buttons button {
  padding: 15px 25px;
  border: none;
  background: white;
  color: black;
  border-radius: 20px;
  font-weight: bold;
  cursor:grabbing;
  transition: 0.3s;
}

.category-buttons button:hover {
  background: #d9d9d9;
}
.scrollable-feed{
  max-height:1200px;
  overflow: auto;
  margin-bottom: 10px;
}
.scrollable-feed::-webkit-scrollbar {
  width:6px
}
.scrollable-feed::-webkit-scrollbar-thumb:hover{
  background: #555;
}
.post-container {
  background: linear-gradient(to bottom, #ffffff, black);
  padding: 20px;
  border-radius: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.post-container h3 {
  color: black;
  font-size: 4rem;
  margin: 50px;
}
.post-box {
  max-width:1000px;
  height: 800px;
  margin: 10px auto;
  background: #ddd;
  border-radius: 10px;
  position: relative;
}

.post-box.dark {
  background: #333;
}

.icon-bar {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 1.2rem;
}
footer {
  margin-top: 40px;
  text-align: center;
}

.contact-button {
  background: #a366ff;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1{font-family: "Protest Riot", sans-serif;
}

body {
  nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: absolute;
  right: 3%;
}

nav a {
  background: #a366ff;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  transition: 0.3s;
text-decoration:none;
}

nav a:hover {
  background: #d1b3ff;}}

  body{ font-family: sans-serif;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider {
  width: 80%;
  max-width: 700px;
  height: 60vh;
  position: absolute;
  top: 250px;
  right: 400px;
  overflow: hidden;
  border-radius: 12px;

}
input[type="radio"] {
  display: none;
}

.slides {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.item {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.item img {
  width: 26%;
  height: 100%;
  object-fit: cover;
}

#s1:checked ~ .slides {
  transform: translateX(0%);
}
#s2:checked ~ .slides {
  transform: translateX(-100%);
}
#s3:checked ~ .slides {
  transform: translateX(-200%);
}
#s4:checked ~ .slides {
  transform: translateX(-300%);
}

.controls label {
  position: absolute;
  top: 250px;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 10;
  user-select: none;
  display: none;
}

#s1:checked ~ .controls .prev { display: block; left: 10px; }
#s1:checked ~ .controls .next { display: block; right: 10px; }

#s2:checked ~ .controls .prev2 { display: block; left: 10px; }
#s2:checked ~ .controls .next2 { display: block; right: 10px; }

#s3:checked ~ .controls .prev3 { display: block; left: 10px; }
#s3:checked ~ .controls .next3 { display: block; right: 10px; }

#s4:checked ~ .controls .prev4 { display: block; left: 10px; }
#s4:checked ~ .controls .next4 { display: block; right: 10px; }

.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dots label {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

#s1:checked ~ .dots label:nth-child(1),
#s2:checked ~ .dots label:nth-child(2),
#s3:checked ~ .dots label:nth-child(3),
#s4:checked ~ .dots label:nth-child(4),
{
  opacity: 1;
  transform: scale(1.2);
}
.a-contact{
  position: absolute;
  margin-top: 20px;
  text-align: center;
  bottom: -80px;
  justify-content: center;
  text-align: center;
  align-items: center;
}

 .a-contact{
  background: #a366ff;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}
body{
.container {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 500px;
  gap: 8px;
  position: absolute;
  bottom: -500px;
}

.container > div {
  flex: 0 0 200px;
  border-radius: 0.5rem;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.container > div:nth-of-type(1) {
  background: url(https://w0.peakpx.com/wallpaper/277/693/HD-wallpaper-the-batman-movie-art-design-poster.jpg)
    no-repeat 50% / cover;
}
.container > div:nth-of-type(2) {
  background: url(https://c4.wallpaperflare.com/wallpaper/410/331/586/movies-superman-man-of-steel-henry-cavill-wallpaper-preview.jpg)
    no-repeat 50% / cover;
}
.container > div:nth-of-type(3) {
  background: url(https://images2.alphacoders.com/112/1120632.jpg)
    no-repeat 50% / cover;
}
.container > div:nth-of-type(4) {
  background: url(https://images.thedirect.com/media/article_full/spider-man-no-way-home-poster-doc-ock.jpg)
    no-repeat 50% / cover;
}
.container > div:nth-of-type(5) {
  background: url(https://i.pinimg.com/736x/90/4f/4e/904f4e884488866c2340b931232161be.jpg)
    no-repeat 50% / cover;
}
.container > div:nth-of-type(6) {
  background: url(https://i.pinimg.com/736x/a7/ee/74/a7ee74f515084ec11bd6adb8630b83b6.jpg)
    no-repeat 50% / cover;
}
.container > div:nth-of-type(7) {
  background: url(https://wallpapercat.com/w/full/4/0/3/457734-1375x2444-iphone-hd-john-wick-wallpaper-image.jpg)
    no-repeat 50% / cover;

}

.container > div .content {
  font-size: 1.5rem;
  color: aliceblue;
  display: flex;
  align-items: center;
  padding: 5px;
  opacity: 0;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;

  background: linear-gradient(
    0deg,
    rgba(2, 2, 46, 0.6755077031) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateY(100%);
  transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
  visibility: hidden;
}

.container > div:hover {
  flex: 0 0 300px;
  box-shadow: 1px 3px 15px rgb(0, 0, 0);
  transform: translateY(-30px);
}

.container > div .content span {
  display: block;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.container > div:hover .content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);

}}
body{
.bar-container {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 500px;
  gap: 100px;
  position: absolute;
  bottom: 100px;
}

.bar-container > div {
  flex: 0 0 200px;
  border-radius: 0.5rem;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.bar-image {
  display: flex;
  justify-content: center;
  align-items: center;
 max-width: 350px;
  height: 500px;
  background: url(https://png.pngtree.com/thumb_back/fh260/background/20230912/pngtree-housing-prices-falling-image_13254276.jpg)
    no-repeat 50% / cover;
  border: none;
  position: relative;
  cursor: pointer; position: relative;
  text-decoration: none;
  color: white;
  font-size: 50px;
  font-family: Arial, sans-serif;
}
.bar-text {
  position: absolute;
  top: 10px;
  left: 37%;
  transform: translateX(-50%,-50%);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}
.bar-image2 {
  display: flex;
  justify-content: center;
  align-items: center;
 max-width: 350px;
  height: 500px;
  background: url(https://w0.peakpx.com/wallpaper/277/693/HD-wallpaper-the-batman-movie-art-design-poster.jpg)
    no-repeat 50% / cover;
  border: none;
  position: relative;
  cursor: pointer; position: relative;
  text-decoration: none;
  color: white;
  font-size: 50px;
  font-family: Arial, sans-serif;

}
.bar-text2 {
  position: absolute;
  top: 10px;
  left: 37%;
  transform: translateX(-50%,-50%);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}
.bar-image3 {
  display: flex;
  justify-content: center;
  align-items: center;
 max-width: 350px;
  height: 500px;
  background: url(https://i.ebayimg.com/images/g/4CkAAOSwQspjBLTc/s-l400.jpg)
    no-repeat 50% / cover;
  border: none;
  position: relative;
  cursor: pointer; position: relative;
  text-decoration: none;
  color: white;
  font-size: 50px;
  font-family: Arial, sans-serif;

}
.bar-text3 {
  position: absolute;
  top: 10px;
  left: 37%;
  transform: translateX(-50%,-50%);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

}
.bar-container > div .content {
  font-size: 1.5rem;
  color: aliceblue;
  display: flex;
  align-items: center;
  padding: 5px;
  opacity: 0;
  flex-direction: column;
  height: 100%;
  justify-content: center;

  background: linear-gradient(
    0deg,
    rgba(2, 2, 46, 0.6755077031) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateY(100%);
  transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
  visibility: hidden;
}

.bar-container > div:hover {
  flex: 0 0 300px;
  transform: scale(1.3) translateY(-20px);
  z-index: 2;
  box-shadow: 1px 3px 15px rgb(0, 0, 0);
}

.bar-container > div .content span {
  display: block;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.bar-container > div:hover .content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);}

}


.music-hero {
  background-color: #5c5c5c;
  color: white;
  text-align: center;
  padding: 30px 0;
  font-size: 2em;
}

.song-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  margin: 20px auto;
  max-width: 80%;
  padding: 20px;
  gap: 20px;
  font-size: 1.5em;
}

.arrow {
  font-size: 2em;
  background: none;
  border: none;
  cursor: pointer;
}

.song-title {
  font-weight: bold;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.music-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thumbnail {
  background-color: #ccc;
  width: 120px;
  height: 120px;
  border-radius: 10px;
}

.img-link img{
  width: 200px;
  height:500px;
  cursor:pointer;
}
.img-link img:hover{
  transform: scale(1.05);
  transition: 0.3s ease;;
}
a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.container-bar {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 500px;
  gap: 8px;
  position: absolute;
  bottom: -1100px;
}

.container-bar > div {
  flex: 0 0 200px;
  border-radius: 0.5rem;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.container-bar > div:nth-of-type(1) {
  background: url(https://w0.peakpx.com/wallpaper/336/959/HD-wallpaper-the-witcher-film-game-movie-series-sword-war-warriir-witch.jpg)
    no-repeat 50% / cover;
}
.container-bar > div:nth-of-type(2) {
  background: url(https://i.pinimg.com/564x/2e/f1/02/2ef1022af322d88be53d5470f047f6be.jpg)
    no-repeat 50% / cover;
}
.container-bar > div:nth-of-type(3) {
  background: url(https://i.pinimg.com/736x/d5/4f/b4/d54fb46faf2554e8692f3c875231807c.jpg)
    no-repeat 50% / cover;
}
.container-bar > div:nth-of-type(4) {
  background: url(https://www.limitedruns.com/media/cache/aa/fc/aafcd5a32288bb9f1bf11f2894548428.jpg)
    no-repeat 50% / cover;
}
.container-bar > div:nth-of-type(5) {
  background: url(https://cdn.marvel.com/content/1x/dp3_1sht_digital_srgb_ka_swords_v5_resized.jpg)
    no-repeat 50% / cover;
}
.container-bar > div:nth-of-type(6) {
  background: url(https://i.pinimg.com/736x/11/06/94/110694f8bdc1ce935f0000fc0eed7d8e.jpg)
    no-repeat 50% / cover;
}
.container-bar > div:nth-of-type(7) {
  background: url(https://i.pinimg.com/474x/af/2e/57/af2e572d75db31e0f91b7220e527648f.jpg)
    no-repeat 50% / cover;

}

.container-bar > div .content {
  font-size: 1.5rem;
  color: aliceblue;
  display: flex;
  align-items: center;
  padding: 5px;
  opacity: 0;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;

  background: linear-gradient(
    0deg,
    rgba(2, 2, 46, 0.6755077031) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateY(100%);
  transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
  visibility: hidden;
}

.container-bar > div:hover {
  flex: 0 0 300px;
  box-shadow: 1px 3px 15px rgb(0, 0, 0);
  transform: translateY(-30px);
}

.container-bar > div .content span {
  display: block;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.container-bar > div:hover .content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}
.footer {
  max-width: 910px;
  margin: 8px auto 6px;
  padding: 0 20px;
  font-family: "DM Sans", sans-serif;
}

.footer-top-line,
.footer-bottom-line {
  height: 4px;
  background-color: black;
  width: 910px;
}

.footer-top-line {
  margin-bottom: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: nowrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-heading {
  font-size: 36px;
  font-weight: 700;
  font-family: "Newsreader", serif;
  margin-bottom: 6px;
}

.footer-subtext {
  font-size: 16px;
  margin: 0;
}

.footer-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom-line {
  margin-top: 40px;
}


   body{ font-family: sans-serif;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;


.slider2 {
  width: 50%;
  max-width: 800px;
  height: 60vh;
  position: absolute;
  top: 250px;
  right: 400px;
  overflow: hidden;
  border-radius: 20px;

}
input[type="radio"] {
  display: none;
}

.slides2 {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.item2 {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.item2 img {
  width: 21%;
  height: 70%;

}

#s1:checked ~ .slides2 {
  transform: translateX(0%);
}
#s2:checked ~ .slides2 {
  transform: translateX(-100%);
}
#s3:checked ~ .slides2 {
  transform: translateX(-200%);
}
#s4:checked ~ .slides2 {
  transform: translateX(-300%);
}

.controls2 label {
  position: absolute;
  top: 180px;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 10;
  user-select: none;
  display: none;
}

#s1:checked ~ .controls2 .prev { display: block; left: 10px; }
#s1:checked ~ .controls2 .next { display: block; right: 10px; }

#s2:checked ~ .controls2 .prev2 { display: block; left: 10px; }
#s2:checked ~ .controls2 .next2 { display: block; right: 10px; }

#s3:checked ~ .controls2 .prev3 { display: block; left: 10px; }
#s3:checked ~ .controls2 .next3 { display: block; right: 10px; }

#s4:checked ~ .controls2 .prev4 { display: block; left: 10px; }
#s4:checked ~ .controls2 .next4 { display: block; right: 10px; }

.dots2 {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dots2 label {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

#s1:checked ~ .dots2 label:nth-child(1),
#s2:checked ~ .dots2 label:nth-child(2),
#s3:checked ~ .dots2 label:nth-child(3),
#s4:checked ~ .dots2 label:nth-child(4),
{
  opacity: 1;
  transform: scale(1.2);}

   }
  background: #111;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;


.scroll-container {

  overflow: hidden;
  width: 50%;
  border-radius: 10px;
}

.scroll-content {
  display: flex;
  position: relative;
}

.scroll-content img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  margin-right: 100px;
  border-radius: 10px;
}

.right-to-left .scroll-content {
  animation: scroll-rtl 60s linear infinite;
  bottom: -700px;
}

@keyframes scroll-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.left-to-right .scroll-content {
  animation: scroll-ltr 60s linear infinite;
  bottom: -800px;
}

@keyframes scroll-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.right-to-left2 .scroll-content {
  animation: scroll-rtl 60s linear infinite;
  bottom: -900px;
}

@keyframes scroll-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.music-para{
  H2{
    position: absolute;
    top: 100px;
    right: 45%;
    font-size: 80px;
    font-family: "Protest Riot", sans-serif;
  }
}
.post-image {
    width: 100%;
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}










