@font-face {
  font-family: "Senobi-Gothic-Bold";
  src: url("/assets/fonts/Senobi-Gothic-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Senobi-Gothic-Medium";
  src: url("/assets/fonts/Senobi-Gothic-Medium.ttf") format("truetype");
}

.nav-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.header img {
  padding: 10px 10px;
}

.header a {
  border-left: 5px solid #3A454D;
  text-decoration: none;
  align-items: center;
  padding: 0 5%;
  font-family: "Audiowide", cursive;
  color: #118ACB;
  font-size: 2vw;
}

.header a:first-child {
  border: none;
}

html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

input[name="chara-select"] {
  display: none;
}

.btn-group {
  display: flex;
  justify-content: center;
  font-family: "Audiowide", cursive;
  font-size: 30px;
}

.content {
  display: none;
  align-items: center;
}

#tab1:checked ~ .contents #content1,
#tab2:checked ~ .contents #content2,
#tab3:checked ~ .contents #content3 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 20px;
}

.chara-image img {
  width: 1000px;
  height: auto;
  align-items: left;
}

.chara-info {
  vertical-align: top;
  width: 650px;
  align-items: right;
  text-align: left;
}

.description {
  font-family: "Senobi-Gothic-Medium";
  font-size: 50px;
}

.name {
  font-family: "Audiowide", cursive;
  font-size: 85px;
}

.profile {
  font-family: "Senobi-Gothic-Medium";
  font-size: 30px;
}

#tab1:checked ~ .btn-group label[for="tab1"] { background: #EC838E; }
#tab2:checked ~ .btn-group label[for="tab2"] { background: #118ACB; }
#tab3:checked ~ .btn-group label[for="tab3"] { background: #FFF56D; }

.btn {
  padding: 10px 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer {
  background: linear-gradient(135deg, #5F7280, #3A454D);
  padding: 50px 0;
  font-family: "Senobi-Gothic-Medium";
  color: #fff;
  font-size: 35px;
  text-align: center;
}