:root {
  --background-color: #041421;
  --text-color: #86b9b0;

  --header-background: white;
  --header-text: #86b9b0;
  --font-family: "Inter", Arial, sans-serif;
}

body,
h1,
h2,
p,
ul {
  margin: 0;
  padding: 0;
}

/* Text Styling */
body a,
body p,
body marquee {
  color: var(--text-color);
}

/* <a> href styling */
a:link {
  color: #f77f00;
}

a:visited {
  color: #f70400;
}

a:active {
  color: #00c2f7;
}
a:hover {
  color: #f70098;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--background-color);
}

/* header {
  background: #35424a;
  color: var(--header-background);
  padding: 2px;
  text-align: center;

  h1 {
    color: var(--header-text);
  }
} */

/* Section Styling */
main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  padding-bottom: 100px;
}

.TopRow {
  /*To sperate the left and right container with Favshow container */
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
}

section.LeftContainer {
  background: #041421;
  padding: 1rem;
  border-radius: 25px;
  box-shadow: 0 2px 5px #86b9b0;
  width: 300px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;

  p.Text {
    color: var(--text-color);
    float: left;
    margin-right: 10px;
    padding: 3px;
    font-family: var(--font-family);
    line-height: 1.6;
    font-size: 15px;
  }

  img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 100px;
    float: none;
    display: block;
  }

  .Card-info {
    perspective: 1000px;
  }

  .Card-inner {
    position: relative;
    width: 250px;
    height: 222px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }

  .Card-info:hover .Card-inner {
    transform: rotateY(180deg);
  }

  .Card-front,
  .Card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    top: 0;
    left: 0;
  }

  .Card-back {
    transform: rotateY(180deg);
  }

  img.Card {
    border-radius: 10px;
    object-fit: cover;
    width: 219px;
    height: 219px;
  }

  p.Name {
    color: #78aec4;
    float: center;
    padding: 1px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-weight: bold;
    font-size: 36px;
  }

  p.About {
    font-size: 35px;
    font-weight: bold;
    color: var(--text-color);
    padding: 1rem;
    font-family: Arial, sans-serif;
  }
}

section.LeftContainer:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
section.RightContainer {
  background: #041421;
  padding: 1rem;
  border-radius: 25px;
  box-shadow: 0 2px 5px var(--text-color);
  width: 100%;
  max-height: 640px;
  margin-bottom: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;

  overflow-y: scroll;
  scrollbar-width: none;

  p.Introduction {
    padding-bottom: 0px;
    font-size: 35px;
    font-weight: bold;
    color: #78aec4;
    font-family: Arial, sans-serif;
    text-decoration: underline;
  }

  ul.List {
    padding: 1.5rem;
    padding-top: 0;
    color: var(--text-color);
  }

  p.Text {
    color: var(--text-color);
    float: left;
    margin-right: 10px;
    padding: 3px;
    font-family: var(--font-family);
    line-height: 1.6;
  }
}
section.RightContainer:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

section.Favshow {
  background: #041421;
  padding: 1rem;
  border-radius: 25px;
  box-shadow: 0 2px 5px #86b9b0;
  margin: 10px 0 200px;
  width: 97%;
  height: 495px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  opacity: 0.9;
  top: 100%;
  margin: 10px 0 0 0px;
  text-align: center;
  transition: opacity 0.3s ease-in-out;

  p.Textshow {
    color: #78aec4;
    float: center;
    margin-right: 10px;
    padding: 3px;
    font-family: var(--font-family);
    line-height: 1.6;
    font-size: 23px;
    font-weight: bold;
    text-decoration: underline;
    overflow: hidden;
  }
}

section.Favshow:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

section.Favshow img {
  width: 10%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgb(255, 255, 255, 0.684);
  box-shadow: 0 0px 15px #1d4683;
  transition: all ease-in-out 0.5s;
  margin-bottom: 40px;
}

section.Favshow img:hover {
  width: 25%;
}

.FlexRow {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  align-items: flex-start;
}

.LeftStack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

section.quote {
  background: #041421;
  box-shadow: 0 2px 5px #86b9b0;
  padding: 1rem;
  width: 68%;
  height: 205px;
  border-radius: 25px;
  margin: 10px 0 0 0px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items horizontally */
  justify-content: flex-start;
  /* Start items at the top */
  overflow-y: auto;
  scrollbar-width: none;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;

  p.Textshow {
    font-size: 25px;
    font-weight: bold;
    color: #78aec4;
    font-family: Arial, sans-serif;
    text-decoration: underline;
    text-align: center;
    margin: 0 0 1rem 0;
  }

  p.Text {
    font-size: 25px;
    font-weight: bold;
    color: var(--text-color);
    font-family: var(--font-family);
    text-align: center;
    margin: 0 0 1rem 0;
  }
}
section.quote:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

section.MiniGame {
  background: #041421;
  box-shadow: 0 2px 5px #86b9b0;
  padding: 1rem;
  width: 68%;
  height: 250px;
  border-radius: 25px;
  margin: 10px 0 0 0px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items horizontally */
  justify-content: flex-start;
  /* Start items at the top */
  overflow-y: auto;
  scrollbar-width: none;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;

  p.Textshow {
    font-size: 25px;
    font-weight: bold;
    color: #78aec4;
    font-family: Arial, sans-serif;
    text-decoration: underline;
    text-align: center;
    margin: 0 0 1rem 0;
  }
  p.Text {
    color: var(--text-color);
    padding: 1px;
    font-family: var(--font-family);
    line-height: 1.6;
    font-size: 19px;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 8px #86b9b0, 0 0 16px #107462, 0 0 24px #089bd5;
  }

  .rps-btn {
    background: linear-gradient(90deg, #1e3c72 0%, #6dd5fa 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.75em 2em;
    font-size: 1.2em;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    margin: 0.5em;
    box-shadow: 0 4px 14px 0 rgba(134, 185, 176, 0.15);
    transition: transform 0.1s, box-shadow 0.1s, background 0.3s;
  }
  .rps-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px 0 rgba(134, 185, 176, 0.25);
    background: linear-gradient(90deg, #6dd5fa 0%, #1e3c72 100%);
  }
}
section.MiniGame:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

section.FavPlaylist {
  background: #041421;
  box-shadow: 0 2px 5px #86b9b0;
  padding: 1rem;
  width: 300px;
  height: 450px;
  border-radius: 25px;
  margin: 10px 0 0 0px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items horizontally */
  justify-content: flex-start;
  /* Start items at the top */
  overflow-y: auto;
  scrollbar-width: none;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
  scroll-behavior: smooth;

  p.Textshow {
    font-size: 25px;
    font-weight: bold;
    color: #78aec4;
    font-family: Arial, sans-serif;
    text-decoration: underline;
    text-align: center;
    margin: 0 0 1rem 0;
  }

  img.playlist {
    border-radius: 0px;
    object-fit: cover;
    width: 200px;
    height: 200px;
  }

  a.playlink {
    display: block;
    padding: 1px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 23px;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  p.Textspotify {
    color: var(--text-color);
    padding: 1px;
    font-family: var(--font-family);
    line-height: 1.6;
    font-size: 19px;
    text-align: left;
    margin: 0;
  }
}
section.FavPlaylist:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

footer {
  bottom: 0;
  left: 0;
  width: 99.75%;
  text-align: center;
  padding: 2px;
  background: #35424a;
  color: var(--text-color);
  position: fixed;
}

section.quote,
section.MiniGame {
  width: 100%;

  min-width: 250px;
  box-sizing: border-box;
}
