:root {
  --primary: #C9D77B;
  --secondary: #F25F37;
  --background1: #F7F7F2;
  --background2: #E4E6C6;
  --margin: #241C16;
  --text1: #000000;
  --text2: #F7F7F2;
  --logo: #F7F7F2;
}

/* ===========================
   Layout
=========================== */

body {
  background: var(--margin);
  margin: 0 0;
  font-family: "Silkscreen", sans-serif;
  padding: 0;
  width:100vw, 100vh;
  background-size: 100vw; height:100%;
}
.container {
  width: 80%;
  background-color: var(--background1);
  margin: 0 auto;
  border-radius: 0;
  box-sizing: border-box;
}


/* ===========================
   Header
=========================== */

header {
  position: sticky;
  top: 0px;
  z-index: 10;
  background: var(--primary);

  padding: 10px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header a {
  color: var(--text1);
  text-decoration: none;
  margin: 0 5px;
  font-size: 1.1rem;
  font-weight: bold;
}


/* ===========================
   Logo
=========================== */

.logo {
  color: var(--logo);
  width: auto;
  height: 80%;
  display: block;
}
.logo-wrap {
  flex-shrink: 0;
  background-color: var(--secondary);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ===========================
   Cover Image
=========================== */

.cover-image {
  width: 100%;
  height: auto;
  display: block;
}


/* ===========================
   Bio Section
=========================== */

.bio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 40px;
  background-color: var(--primary);
  color: var(--text1);
}
.bio-photo {
  width: 200px;
  height: auto;
  border-radius: 6px;
}
.bio-text {
  max-width: 60%;
  font-size: 1rem;
}
.bio-text h2 {
  margin-bottom: 10px;
}
.bio-text p {
  line-height: 1.4;
}
.learn-more {
  position: absolute;
  bottom: -25px;   /* pushes it OUTSIDE the box */
  right: 80px;
  background: var(--secondary);
  color: var(--text2);
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;

  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===========================
   Games Section
=========================== */

.games {
  margin-top: 60px;
  padding: 20px;
  background: var(--background1);
  border-radius: 20px;
}

.games-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--text1);
  text-align: center;
}

.games-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
  justify-content: center;
  
  scrollbar-width: thin;
}

.game-card {
  text-decoration: none;
  color var(--text1);
  width: 260px;
  flex-shrink: 0;
  text-align: center;
}

.game-thumb {
  width: 100%;
  height: 180px;
  background: #000;
  border-radius: 12px;
  margin-bottom: 10px;
}

.placeholder {
  background: repeating-linear-gradient(
  45deg,
  #ccc 0,
  #ccc 10px,
  #eee 10px,
  #eee 20px
  );
}

.more-soon {
  background: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: var(--text2);
}

.game-label {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text1);
}

/* Track */

::-webkit-scrollbar-track {
  background: #000000;
  border-style:solid;
  border-width:0.3vh;
  border-color:#ffffff;
  
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #F25F37;