* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: black;
}

/** Nav **/

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  background-color: rgba(10, 10, 20, 0.8);
  backdrop-filter: blur(5px);
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 10px #4a00e0;
  margin: 0.8rem 5%;
}

.logo img{
  object-fit: cover;
  width: 63px;
  height: 48px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0.8rem 5%;
}

.nav-links li {
  margin-left: 1.7rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #8e2de2;
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/** Chibi **/

.dchibi {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 80px;
}

.chibi {
  margin: 10px;
  object-fit: cover;
}

/** Intro **/

.intro-section {
  padding: 5rem 0;
  background-color: #0a0a14;
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #8e2de2;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-text {
  flex: 1;
}

.intro-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.intro-image {
  flex: 1;
  border: 3px solid #4a00e0;
  box-shadow: 0 0 30px rgba(89, 0, 255, 0.3);
  transition: transform 0.3s;
}

.intro-image:hover {
  transform: scale(1.02);
}

.intro-image img {
  width: 100%;
  display: block;
}

/** Characters **/

.characters-preview {
  padding: 5rem 0;
  background-color: #0c0c1d;
  color: white;
}

.character-cards {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 3rem 0;
}

.character-card {
  flex: 1;
  background-color: #13131f;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.character-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(74, 0, 224, 0.3);
}

.character-image {
  height: 250px;
  overflow: hidden;
}

.character-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.character-card:hover .character-image img {
  transform: scale(1.1);
}

.character-card h3 {
  padding: 1rem 1rem 0.5rem;
  color: #8e2de2;
}

.character-card p {
  padding: 0 1rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.secondary-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: #8e2de2;
  border: 2px solid #8e2de2;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.secondary-button:hover {
  background-color: #8e2de2;
  color: white;
}

/** Gallery **/

.gallery-preview {
  padding: 5rem 0;
  background-color: #0a0a14;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
  margin: 3rem 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/** Quote **/

.quote-section {
  padding: 8rem 0;
  background-image: url('path/to/dark-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: white;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 20, 0.8);
}

.quote-section .container {
  position: relative;
}

blockquote {
  font-size: 2.5rem;
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

blockquote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-style: normal;
  color: #8e2de2;
}

/** Footer **/

.main-footer {
  padding: 4rem 0 2rem;
  background-color: #080810;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #8e2de2;
}

.footer-links h4,
.footer-credits h4 {
  color: #8e2de2;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #8e2de2;
}

.footer-credits p {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1a1a2e;
  font-size: 0.9rem;
  color: #888;
}
