/* ---------- STYLESHEET BY BUDDYWINTE FOR NURBAOFFICIAL.NEOCITIES.ORG ONLY! ----------
/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #121212;
  font-family: 'Inter', sans-serif;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.6;
  overflow-x: hidden;
}

/* allow spacing between sections */
section {
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.2rem;
}


/* ---------- TYPOGRAPHY ---------- */
h1, h2 {
  font-weight: 900;
  line-height: 1.2;
  color: #ff4d4d;
  text-shadow: 0 0 5px #ff4d4d, 0 0 10px #ff0000, 0 0 20px #b30000;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin: 1rem 0;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin: 2rem 0 1rem;
}

p {
  max-width: 750px;
  margin: 1rem auto 2rem;
  color: #ccc;
  font-size: clamp(1rem, 2vw, 1.2rem);
}


/* ---------- BUTTONS ---------- */
.cta, a.home-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  background-color: #ff1a1a;
  box-shadow: 0 0 8px #ff1a1a, 0 0 16px #ff0000, 0 0 24px #b30000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover, a.home-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #ff4d4d, 0 0 20px #ff0000, 0 0 28px #b30000;
}


/* ---------- FEATURES ---------- */


.features .feature-list {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  font-size: 1rem;
  color: #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  background: rgba(255,0,0,0.1);
}


/* ---------- FAN ART CAROUSEL ---------- */


.carousel {
  position: relative;
  max-width: 95%;
  margin: 0 auto 3rem;
  overflow: hidden;
  perspective: 1000px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  padding: 0 1rem;
}

.carousel-item img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.carousel-item .info {
  font-size: 0.9rem;
  color: #aaa;
}

/* carousel arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,0,0,0.2), rgba(255,0,0,0.6));
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,0,0,0.4);
  z-index: 100; /* arrows on top */
}

.arrow:hover {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 8px 25px rgba(255,0,0,0.8);
}

.arrow.left { left: 0.5rem; }
.arrow.right { right: 0.5rem; }

/* carousel indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.carousel-indicators .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #555;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.carousel-indicators .dot:hover {
  transform: scale(1.2);
  background: #999;
}

.carousel-indicators .dot.active {
  background: #00ff99;
  box-shadow: 0 0 8px rgba(255,0,0,0.6);
}


/* ---------- SOCIALS ---------- */


.socials p {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.08);
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  background: rgba(255,0,0,0.2);
  transform: translateY(-3px);
}

/* ---------- COMMUNITY ---------- */


.community {
  margin-top: 4rem;
}

.community h2 {
  margin-bottom: 1rem;
}

.community p {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #ccc;
}


/* ---------- FOOTER ---------- */
footer {
  background: #111;
  color: #bbb;
  padding: 2rem 1rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid #ff0000;
  box-shadow: 0 -2px 10px rgba(255,0,0,0.2);
  font-size: 0.9rem;
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff4d4d;
  text-shadow: 0 0 4px #ff1a1a;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ff4d4d;
}


/* ---------- REVIEWS ---------- */


.reviews .review-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.5rem;
}

.review {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}

.review:hover {
  transform: translateY(-5px);
  background: rgba(255,0,0,0.08);
}

.review p {
  font-style: italic;
  color: #ddd;
  margin-bottom: 1rem;
}

.review span {
  font-size: 0.9rem;
  color: #aaa;
}


/* ---------- MINI UPDATE LOG ---------- */


.mini-updates .update-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.mini-updates .update {
  background: rgba(255,255,255,0.05);
  padding: 1.2rem;
  border-radius: 1rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.mini-updates .update h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff0000;
}

.mini-updates .update p {
  font-size: 0.95rem;
  color: #ccc;
}


/* ---------- FINAL CTA ---------- */

.final-cta {
  background: rgba(255,0,0,0.05);
  padding: 3rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(255,0,0,0.2);
}

.final-cta h2 {
  margin-bottom: 1rem;
}

.final-cta p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: #eee;
}


/* ---------- DOCUMENT PAGE ---------- */

.doc-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  background: rgba(30,30,30,0.95);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0,255,150,0.2);
  color: #eee;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

.doc-page h1, 
.doc-page h2, 
.doc-page h3 {
  color: #ff0000;
  background-image: linear-gradient(270deg, #ff4d4d, #ff0000, #b30000, #ff4d4d);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 8s linear infinite;
  margin: 1.5rem 0 1rem;
}

.doc-page h1 {
  font-size: 2.5rem;
}

.doc-page h2 {
  font-size: 2rem;
}

.doc-page h3 {
  font-size: 1.5rem;
}

.doc-page p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.doc-page ul,
.doc-page ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.doc-page li {
  margin-bottom: 0.5rem;
}

.doc-page a {
  color: #ff4d4d;
  text-decoration: underline;
}

.doc-page a:hover {
  color: #ff0000;
  text-decoration: none;
}

.doc-page code {
  background: rgba(255,0,0,0.1);
  color: #ff0000;
  padding: 0.1rem 0.3rem;
  border-radius: 0.3rem;
  font-family: monospace;
}


/* ---------- NAVBAR ---------- */

.navbar {
  width: 100%;
  background: rgba(20,20,20,0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(255,0,0,0.15);
  backdrop-filter: blur(6px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ff4d4d;
  text-shadow: 0 0 5px #ff4d4d, 0 0 10px #ff0000, 0 0 15px #b30000;
  text-decoration: none;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.nav-links li a:hover {
  background: rgba(255,0,0,0.15);
}


/* ---------- CREDITS PAGE ---------- */
.credits-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.credits-search input {
  width: 100%;
  max-width: 400px;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid #ff0000;
  background: #1a1a1a;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.team-member {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 8px #ff1a1a, 0 0 16px #ff0000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px #ff4d4d, 0 0 20px #ff0000;
}

.team-member h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  color: #ff4d4d;
}

.team-member span {
  font-size: 0.9rem;
  color: #ccc;
}

.no-results {
  text-align: center;
  color: #ff6666;
  margin-top: 1rem;
  display: none;
}


/* ---------- 404 PAGE ---------- */


    a.home-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(270deg, #ff4d4d, #ff0000, #b30000);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  box-shadow: 0 4px 15px rgba(255,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.home-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(255,0,0,0.6);
}


/* ---------- FAN ART PAGE ---------- */

.fanart-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 1rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fanart-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a1a1a;
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 0 12px #ff1a1a;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fanart-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 16px #ff4d4d, 0 0 24px #ff0000;
}

.fanart-card img {
  width: 100%;
  border-radius: 0.5rem;
  cursor: pointer;
}

.fanart-card .caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ff4d4d;
}


/* ---------- ANIMATIONS ---------- */


@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ---------- RESPONSIVE ---------- */


@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
  .carousel-item img {
    border-radius: 0.8rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(15,15,15,0.95);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }
  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    box-shadow: 0 6px 20px rgba(0,255,150,0.15);
  }
}

@media (max-width: 500px) {
  .fanart-card .title { font-size: 0.9rem; }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  a.home-btn { padding: 0.8rem 1.5rem; font-size: 1rem; }
}

@media (max-width: 900px) {
    .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-section p,
  .footer-section ul {
    text-align: center;
  }

  @media (max-width: 600px) {
    .doc-page {
    padding: 1.5rem 1rem;
  }

  .doc-page h1 {
    font-size: 2rem;
  }

  .doc-page h2 {
    font-size: 1.5rem;
  }

  .doc-page h3 {
    font-size: 1.2rem;
  }

  .doc-page p,
  .doc-page li {
    font-size: 1rem;
  }
  }
  .tab-btn {
    flex: 1 1 45%;
    text-align: center;
  }
}