@font-face {
    font-family: 'Montserrat';
    src: url('assets/Fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('assets/Fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

.NavigationBar {
  background-color: #00000000;
  position: relative;
  top: 30px;
  z-index: 1000;
  height: 60px;
  width: 100%;
}

.Navigation-links {
  list-style: none;
  display: flex;

  justify-content: center;
  gap: 100px;
  font-size: 28px;
  margin: 0;
  padding: 0;
}

.Navigation-links li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
  display: inline-block; 
  transition: color 0.3s, transform 0.3s ease;
}

.Navigation-links li a:hover {
  transform: translateY(-10px);
  color: #fff;
}

body {
    background-color: rgba(5, 5, 5, 0.952);
    color: white;
    font-family: 'Montserrat', sans-serif;
    background-image: url('/assets/BackgroundLoop.png');
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
    box-sizing: border-box;
    width: 100%;

  animation: scrollOverlay 40s linear infinite;
}
h1.page-title {
    font-size: 50px;
    text-align: center;
    margin-top: 20px;
    font-weight: 1000;
    color: #ffffff;
}
h2.page-title {
    line-height: 1;
    font-size: 100px;
    text-align: center;
    margin-top: 20px;
    font-weight: 1000;
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff, #777777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 0.5cap rgba(255, 255, 255, 0.4);
}

h3.artistinfo-title {
    line-height: 1;
    font-size: 52px;
    text-align: center;
    margin-top: 20px;
    font-weight: 1000;
    color: #ffffff;
}

p.page-description {
    font-size: 30px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: #ffffff;
}
p, div {
    text-align: center;
}

.page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  gap: 20px;
  width: 100vw;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.header {
    display: flex;
    gap: 20px;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}


.Ranking {
  font-size: clamp(32px, 7vw, 90px);
  background: linear-gradient(180deg, #ffffff, #777777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 0.5cap rgba(255, 255, 255, 0.4);
  margin-right: 40px;
}

.ranking-image {
  width: 150px; /* adjust as needed */
  height: auto;
  display: block;
}

.artist-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 97%;
  box-sizing: border-box;
}

.artist-card {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 12px;
  padding: 0px 24px;
  box-sizing: border-box;
  border: 5px solid #000000;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.artist-image {
  width: 160px;
  height: 100%;
  object-fit: contain;
  margin-right: 40px;
}

.artist-info {
  flex-grow: 1;
  margin-left: 16px;
}

.artist-name-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
}

.artist-rating {
  display: flex;
  align-items: center;
  gap: 20px; /* space between number and stars */
}

.rating-number {
  font-size: clamp(32px, 7vw, 90px);
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #777777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 0.5cap rgba(255, 255, 255, 0.4);
}

.star-images {
  display: flex;
  gap: 2px; /* spacing between stars */
}

.star {
  width: 1.5e;
  height: 1.5em;

}

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px 6px var(--glow-color),
              0 0 35px 15px var(--glow-color);
}

.Glow-Hover {
--glow-color: #E2E2E2; /* default per-box glow */
box-shadow: 0 0 15px var(--glow-color);
transition: box-shadow 0.3s ease;
}

.MichaelJackson_InfoPopup,
.LadyGaga_InfoPopup,
.TheWeeknd_InfoPopup,
.XXXTENTACION_InfoPopup,
.KanyeWest_InfoPopup,
.TwoPac_InfoPopup,
.SabrinaCarpenter_InfoPopup,
.Drake_InfoPopup,
.JuiceWRLD_InfoPopup {
  background-color: #111;
  padding: 20px 30px;
  border-radius: 20px;
  color: white;
  width: 98%;
  height: 1100px;
  max-width: 90vw;
  position: relative;
}
 
.MichaelJackson_InfoPopup.show,
.LadyGaga_InfoPopup.show,
.TheWeeknd_InfoPopup.show,
.XXXTENTACION_InfoPop.show,
.KanyeWest_InfoPopup.show,
.TwoPac_InfoPop.show,
.SabrinaCarpenter_InfoPopup.show,
.Drake_InfoPopup.show,
.JuiceWRLD_InfoPopup.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.songs-list {
  font-size: 30px;
  line-height: 2;
}

.song-list-title {
  font-size: 80px;
  margin-top: 0px;
}


.popup-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* keeps it responsive */
}

.popup-left {
  flex: 1;
  min-width: 280px;
}

.popup-left img {
  width: 800px;         /* Adjust to what fits */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.popup-right {
  flex: 1;
  min-width: 300px;
}

.Grade {
    float: right;
    font-weight: bold;
    -webkit-text-fill-color: initial; /* Reset so JS color works */
    background: none;
    -webkit-background-clip: initial;
    text-shadow: none;
}


@keyframes scrollOverlay {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 100%;
  }
}