html, body {
  height: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Spectral', serif;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background-color: #ccc;
}

.header-left a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 1.8rem;
}

.header-right {
  font-weight: 300;
  font-size: 1.8rem;
}

.profile-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-family: "Times New Roman", serif;
}

.profile-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.section-block {
  margin-bottom: 10px;
}

.section-block h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: bold;
}

.section-block p {
  font-size: 1rem;
  line-height: 1.6;
}

.bronze-bold {
  font-weight: bold;
  color: #cd7f32;
}

.gold-bold {
	font-weight: bold;
	color: #bf9830;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag-box {
  padding: 8px 16px;
  border: 2px solid #000;
  font-family: "Times New Roman", serif;
  font-size: 1rem;
}

.gameboy-wrapper {
  display: flex;
  justify-content: center;
  margin-top: auto;              
  pointer-events: none;      
}

.gameboy-image {
  width: 500px;
  height: auto;
  user-select: none;
}

footer {
  position: relative;
  padding: 20px 40px;
  text-align: center;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background-color: #ccc;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(0%) saturate(0%) hue-rotate(176deg) brightness(85%) contrast(84%);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #000;
}

.contact img {
  width: 20px;
  height: 20px;
}

@media (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  
  header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background-color: #ccc;
}
  
  .header-left a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 0.9rem;
}

  .header-right {
  font-weight: 300;
  font-size: 0.9rem;
}

.gameboy-image {
  width: 380px;
  height: auto;
  user-select: none;
}
