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;
}

.intro {
  position: relative;
  margin: 120px auto 80px;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(146, 0, 0, 0.4);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.intro h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: rgb(200, 50, 50);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.intro h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.pintro {
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}

span {
  color: rgb(220, 80, 80);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.story-section {
  position: relative;
  margin: 80px auto;
  max-width: 900px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(146, 0, 0, 0.3);
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.story-section h1 {
  font-size: 42px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.story-section h1:hover {
  transform: scale(1.05);
  color: rgb(220, 80, 80);
}

.pstory {
  font-size: 22px;
  text-align: justify;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  margin: 0;
}

@media screen and (max-width: 768px) {
  nav a {
    margin: 0 20px;
    font-size: 16px;
  }
  
  .intro {
    margin: 100px 20px 60px;
    padding: 30px 20px;
  }
  
  .intro h1 {
    font-size: 42px;
  }

  .intro h2 {
    font-size: 26px;
  }

  .pintro {
    font-size: 18px;
  }

  .story-section {
    margin: 60px 20px;
    padding: 30px 20px;
  }

  .story-section h1 {
    font-size: 32px;
  }

  .pstory {
    font-size: 18px;
    text-align: left;
  }
}

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

  .intro {
    margin: 80px 10px 40px;
    padding: 20px 15px;
  }

  .intro h1 {
    font-size: 32px;
  }

  .intro h2 {
    font-size: 20px;
  }

  .pintro {
    font-size: 16px;
  }

  .story-section {
    margin: 40px 10px;
    padding: 20px 15px;
  }

  .story-section h1 {
    font-size: 26px;
  }

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