html {
  cursor: url("assets/achand.png"), auto;
}
*:hover {
  cursor: url("assets/achand.png"), auto;
}
*:active {
  cursor: url("assets/acactive.png"), auto;
}
@font-face {
  font-family: "acf";
  src: url("acf.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: "acf";
  color: #fff;
  background-color: black;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: rgba(146, 0, 0, 0.6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(146, 0, 0, 0.8);
}

header {
  background-color: transparent;
  color: #fff;
  text-align: center;
}

nav {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid rgba(146, 0, 0, 0.3);
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 45px;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
}

nav a:hover {
  background-color: rgba(146, 0, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -500;
}
img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  opacity: 0.9;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.4s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  border: 3px solid rgba(146, 0, 0, 0.3);
}

img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(146, 0, 0, 0.4);
  border-color: rgba(146, 0, 0, 0.6);
}

.ch1 {
  padding: 120px 20px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.ch1 h1 {
  font-size: 48px;
  color: rgb(200, 50, 50);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.ch1 h2 {
  font-size: 32px;
  text-align: center;
  margin: 30px 0;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

p {
  margin: 20px 0;
  max-width: 900px;
  font-size: 20px;
  text-align: justify;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.details {
  width: 100%;
  max-width: 1000px;
  margin-top: 30px;
}

.weapon {
  padding-top: 30px;
}

.skill,
.weapon {
  padding: 20px;
  margin: 20px 0;
  background-color: rgba(146, 0, 0, 0.1);
  border-radius: 15px;
  border-left: 4px solid rgba(146, 0, 0, 0.6);
}

.skill ol,
.weapon ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.skill li,
.weapon li {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(146, 0, 0, 0.2);
}

.skill li:hover,
.weapon li:hover {
  background-color: rgba(146, 0, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sp1 {
  font-size: 24px;
  font-weight: bold;
  color: rgb(200, 50, 50);
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  display: block;
  margin-bottom: 10px;
}

.sp1:hover {
  color: rgb(255, 100, 100);
}

.sp2 {
  font-size: 18px;
  font-weight: bold;
  color: rgb(220, 220, 220);
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.sp2:hover {
  color: rgb(255, 255, 255);
}

@media screen and (max-width: 768px) {
  nav a {
    margin: 0 20px;
    font-size: 16px;
  }

  .ch1 {
    padding: 100px 15px 40px;
    margin-bottom: 30px;
  }

  .ch1 h1 {
    font-size: 36px;
  }

  .ch1 h2 {
    font-size: 24px;
  }

  p {
    font-size: 18px;
    max-width: 100%;
  }

  img {
    height: 200px;
    width: 200px;
  }

  .skill ol,
  .weapon ol {
    grid-template-columns: 1fr;
  }

  .sp1 {
    font-size: 20px;
  }

  .sp2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  nav a {
    margin: 0 10px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .ch1 {
    padding: 80px 10px 30px;
    margin-bottom: 20px;
  }

  .ch1 h1 {
    font-size: 28px;
  }

  .ch1 h2 {
    font-size: 20px;
    margin: 20px 0;
  }

  p {
    font-size: 16px;
    text-align: left;
  }

  img {
    height: 150px;
    width: 150px;
  }

  .details {
    padding: 10px;
  }

  .skill,
  .weapon {
    padding: 15px;
  }

  .skill li,
  .weapon li {
    padding: 12px;
  }
}
