/* Font Family Import START */

@font-face {
  font-family: 'BebasNeue';
  src: url('../asset/fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Font Family Import END */

/* Color */
:root {
  --white: #fff;
  --secondary-white: #dfdfdf;
  --black: #121212;
  --gray: #36454f;
  --primary-black: #1d1f1f;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 10px;
}

* {
  font-family: 'BebasNeue';
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  padding: 0;
  cursor: url(../asset/cursor/kunai.cur), auto;
  transition: 450ms ease-in-out;
}

body {
  background-image: url(../asset/story/bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* overflow: hidden; */
}

.wrapper {
  max-width: 85%;
  margin: 75px auto;
  background-color: var(--white);
  padding: 50px;
  /* overflow-y: auto; */
}

.wrapper > h1 {
  margin: 1.5rem 0;
  letter-spacing: 3px;
}

.mid-border {
  padding: 10px 20px;
  border: 1px solid;
}

.title-mid {
  text-align: center;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 500;
}

.title-left {
  text-align: left;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 700;
}




.accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
    font-size: 1.6rem;
}

.accordion:hover {
    background-color: #f2f2f2;
}

.faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-logo {
    width: 5%;
    height: 80%;
    margin: 0 1rem;
}

.panel {
  padding: 0;
  border: 2px solid var(--gray);
  border-radius: 5px;
  display: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.panel-ans {
  padding: 2rem;
  position: relative;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.4;
  border: 1px solid var(--black);
}

.panel-ans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  filter: blur(10px) brightness(0.5);
  z-index: -1;
}

.panel-ans.panel-ans-land-of-waves::before {
  background-image: url(../asset/story/land-of-waves.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.panel-ans.panel-ans-chunin-exams::before {
  background-image: url(../asset/story/chunin-exams.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.panel p {
    color: var(--white);
    font-size: 5rem;
    line-height: 1.4;
    position: relative;
    z-index: 5;
}

.inline-faq {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}



/* .accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
    font-size: 1.6rem;
}

.accordion:hover {
    background-color: #f2f2f2;
}

.faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-logo {
    width: 5%;
    height: 80%;
    margin: 0 1rem;
}


.panel {
  padding: 0;
  border: 2px solid var(--gray);
  border-radius: 5px;
  display: none;
  overflow: hidden;
  position: relative;
}

/* .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px) brightness(0.5);
  z-index: 0;
} */

.panel-ans {
  padding: 2rem;
  position: relative;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.4;
  border: 0 1px 1px 1px solid var(--black);
}

.panel-ans.panel-ans-land-of-waves::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/land-of-waves.jpg);
}

.panel-ans.panel-ans-chunin-exams::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/chunnin-exam.jpg);
}



.panel-ans.panel-konoha::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/konoha-crush.webp);
}

.panel-ans.panel-tsunade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/search-for-tsunade.jpg);
}


.panel-ans.panel-recovery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/sasuke-recovery.jpg);
}

.panel-ans.kazekage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/kazekage-rescue-misssion.jpg);
}


.panel-ans.sasukesai::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/sasuke-and-sai.jpg);
}

.panel-ans.hidan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/hidan-and-kakuzu.webp);
}


.panel-ans.itachi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/itachi-pursuit.jpg);
}


.panel-ans.jiraya::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/tale-of-jiraiya-the-gallant.webp);
}


.panel-ans.pain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/pain-assault.webp);
}


.panel-ans.summit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/five-kage-summit.webp);
}

.panel-ans.countdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/fourth-great-ninja-war-countdown.webp);
}

.panel-ans.war::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/fourth-great-ninja-war-confrontation.webp);
}


.panel-ans.climax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/fourth-great-ninja-war-climax.webp);
}


.panel-ans.birth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/birth-of-ten-tail-jinchuriki.webp);
}


.panel-ans.kaguya::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/kaguya-otsusuki.jpg);
}


.panel-ans.perfect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.5);
  z-index: 1;
  background-image: url(../asset/story/naruto-wedding.avif);
}


.panel-ans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  filter: blur(200px);
  filter: brightness(0);
  z-index: -1;
}

.panel p {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.4;
    position: relative;
}

/* Dark Mode */


.wrapper.dark-mode .faq {
  border: 1px solid var(--white);
}


.wrapper.dark-mode .accordion {
  background-color: var(--primary-black);
  color: var(--white);
}

.wrapper.dark-mode {
  background-color: var(--primary-black);
}

.wrapper.dark-mode .title-mid {
  border: 1px solid var(--white);
  background-color: var(--gray);
}

.wrapper.dark-mode .title-mid, .title-left {
  color: var(--white);
}