.sub {
    border: none;
    color: #41c0e7;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif,system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif,Georgia, 'Times New Roman', Times, serif ,Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    margin-right: 4px;
    flex-direction: row;
    margin: 4px 20px;
}

:root {
  --nav-height: 110px;
}


#top5:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 34px rgba(0,0,0,0.20);
}
header {
  text-align: center;
}
article,
section,
aside,
main {
  background-color: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(65, 99, 133, 0.25);
  border-radius: 18px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

body {
  background-image: url("https://i.pinimg.com/736x/54/84/c7/5484c78187d3fc7e2e91a2d6f8b4e13e.jpg");
  color: #416385;
   font-family: "Barriecito", system-ui;
  font-weight: 400;
  font-style: normal;

}
/* push content below fixed nav */
body {
  padding-top: calc(var(--nav-height) + 10px);
}
#musique {
  background-color: #efc8c6;
  color: #9da467;
  border: 3px groove #f1fcff;
  border-radius: 30px;
  padding: 5px 25px;
  box-shadow: 20px 10px 30px #6b839d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#port {
  background-color: #dbe9c9;
  color: #c3524e;
  border: 3px groove #f1fcff;
  border-radius: 30px;
  padding: 5px 25px;
  box-shadow: 20px 10px 30px #6b839d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#top5 {
  background-color: #f3e8ae;
  color: #a7e8f0;
  border: 3px groove #f1fcff;
  border-radius: 30px;
  padding: 5px 25px;
  box-shadow: 20px 10px 30px #6b839d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

}
h1 {
  font-size: 36px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  color:#eeeae0;
}
a[href] {
  color: #416385;
  text-decoration: underline;
  display: inline-block;
  margin: 0 10px;
}
a[href]:visited {
  color: #03b900;
  text-decoration: underline;
}
.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: var(--nav-height);
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 24px;
  background-color: rgba(126, 254, 235, 0.95);
  border: 2px solid rgba(65, 99, 133, 0.25);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.nav-links{
  display: flex;
  gap: 15px;
  align-items: center;
}
.nav-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#musique:hover,
#top5:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 22px 40px rgba(0,0,0,0.28);
  position: relative;
  z-index: 50;
}
.nav-buttons form {
  margin: 0;
}
.nav-links a[href]:hover {
  color: #ebd93d;
 }
.nav-links a[href]:active {
    color: #552b64;
  }
header {
  text-align: center;
}
.ice-cream {
  display: block;
  margin: 20px auto 0;
  max-width: 180px;
  width: 80%;
  border-radius: 24px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.16);
  padding: 12px;
  transition: transform 0.28s cubic-bezier(.2,.9,.3,1),
              box-shadow 0.28s cubic-bezier(.2,.9,.3,1),
              filter 0.28s ease;
  will-change: transform, box-shadow, filter;
}
.ice-cream:hover {
  transform: translateY(-6px) rotate(-2deg) scale(1.06);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.18)) saturate(1.15) brightness(1.02);
  cursor: pointer;
}
/* Apply similar hover effect to buttons */
.sub,
input[type="submit"],
.button {
  transition: transform 0.22s cubic-bezier(.2,.9,.3,1), box-shadow 0.22s ease, filter 0.22s ease;
  will-change: transform, box-shadow, filter;
}
.sub:hover,
input[type="submit"]:hover,
.button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  filter: saturate(1.08) brightness(1.03);
  cursor: pointer;
}
article,
section,
aside,
main {
  background-color: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(65, 99, 133, 0.25);
  border-radius: 18px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}
.topart {
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(65, 99, 133, 0.25);
  border-radius: 18px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
#portfolio {
  display: block;
  margin: 0 auto;
  max-width: 700px;
  width: 80%;
}
.notme {
  display: flex;
  justify-content: space-between;
}
.subtitle{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  background-color: #41c0e7;
  padding: 20px;
  border-radius: 20px;
  border: 3px solid rgba(239,200,198,0.85);
}
.subtitle img {
  border-radius: 12px;
  padding: 6px;
  background: rgba(255,255,255,0.06);
  display: inline-block;
}
.slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slide 22s linear infinite;
  will-change: transform;
}
.track img {
  height: 110px;
  flex-shrink: 0;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.main{
  display:flex;
  justify-content: center;
  align-items: center;
  background-image: url(https://i.pinimg.com/736x/fa/1f/c5/fa1fc55318a35dd0e56f2658a9ce79b1.jpg);
}
#yotsuba {
  position: absolute;
  top: -180px;
  right: 20px;
  width: 200px;
  height: auto;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
#photo {
  position: absolute;
  top: -90px;
  left: 1050px;
  width: 100%;
  max-width: 200px;
  height: auto;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
#frutiger {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#heisei {
  font-family: "Bitcount Ink", system-ui;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0.5,
    "ELSH" 0,
    "ELXP" 0,
    "SZP1" 0,
    "SZP2" 0,
    "XPN1" 0,
    "XPN2" 0,
    "YPN1" 0,
    "YPN2" 0;
}
#juminocore {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}
.japon {
font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#topmusic { 
  position: absolute;
  top: 10px;
  right: 20px;
  width: 180px;
  height: auto;
  z-index: 1000;
}
#pince { 
  position: absolute;
  top: -180px;
  right: -23px;
  width: 260px;
  height: auto;
  z-index: 1001;
}
.listo {
  font-size: 30px;
}
#inoue { 
  position: absolute;
  top: 180px;
  right: 300px;
  width: 260px;
  height: auto;
  z-index: 1000;
}

.email {
background-color: #c2d3e1;
border: dotted 2px #2774a4;
border-radius: 10px;
padding: 10px;
margin: 30px;
font-family: "Orbitron", sans-serif;
}
.email:focus {
  outline: none;
  border-color: #f3e8ae;
  box-shadow: 0 0 10px #f3e8ae;
}
.email::placeholder {
  color: #747474;
  font-style: italic;
}
#connection {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  background-color: #2e5da9;
  color: #464646;
  border: 3px groove #f1fcff;
  border-radius: 30px;
  padding: 5px 25px;
  box-shadow: 20px 10px 30px #6b839d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  }  


#anime{ 
    background-color: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 17, 223, 0.25);
  border-radius: 18px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}
#manga{ 
    background-color: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(0, 128, 255, 0.25);
  border-radius: 18px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  }
  ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-top:30px
  }
  #fun {
  font-family: "Fascinate Inline", system-ui;
  font-weight: 400;
  font-style: normal;
}

.never{ 
    background-color: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(180, 180, 180, 0.25);
  border-radius: 18px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}
#emc{ 
  position: absolute;
  top: 520px;
  left: 900px;
  width: 260px;
  height: auto;
  z-index: 9;
}
#conan{ 
  position: absolute;
  top: 300px;
  right: 630px;
  width: 170px;
  height: auto;
  z-index: 9;
}
#naruto{ 
  position: absolute;
  top: 130px;
  right: 400px;
  width: 170px;
  height: auto;
  z-index: 9;
}
#naruto{ 
  position: absolute;
  top: 130px;
  right: 540px;
  width: 170px;
  height: auto;
  z-index: 9;
}
#jojo{ 
  position: absolute;
  top: 200px;
  right: 60px;
  width: 100px;
  height: auto;
  z-index: 9;
}
#punpun{ 
  position: absolute;
  top: 400px;
  right: 200px;
  width: 100px;
  height: auto;
  z-index: 9;
}