:root {
  --background-color: #242424;
  --text-color: #fff;
  --primary-color: #ff0040;
  --secondary-color: #535353;
  --highlight-color: #bbb;
  --font-size-small: 13px;
  --font-size-medium: 16px;
  --font-family-primary: "Hind Siliguri", sans-serif;
  --font-family-secondary: "Satisfy", cursive;
}

* {
  box-sizing: border-box;
}

a:active,
a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}

a:focus {
    outline: solid 0px !important;
}

*:focus {
    outline: 0 !important;
}

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
    outline: none !important;
}

::-moz-selection {
    background-color: #ff0040;
    color: #fff;
}

::selection {
    background-color: #ff0040;
    color: #fff;
}

::-webkit-scrollbar {
    width: 1px;
}

::-webkit-scrollbar-track {
    background: #242424;
}

::-webkit-scrollbar-thumb {
    background: #ff0040;
    border-radius: 50%;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #ff0040 #242424;
}

body {
  font-family: var(--font-family-primary);
  background-color: #000;
  color: var(--text-color);
  font-size: var(--font-size-small);
  padding-bottom: 15px;
}

.container {
  border: 2px dashed var(--secondary-color);
  border-radius: 2px;
  background-color: var(--background-color);
  padding: 20px;
}

h1 {
  font-family: var(--font-family-secondary);
  text-align: center;
  color: var(--primary-color);
  margin-bottom: -25px;
}

p {
  color: var(--highlight-color);
  text-align: center;
  font-style: italic;
}

form {
  margin: 20px auto;
  max-width: 400px;
  text-align: center;
}

input[type="text"] {
  background: var(--background-color);
  color: var(--text-color);
  width: 100%;
  padding: 10px;
  font-size: var(--font-size-medium);
  border: 1px solid var(--secondary-color);
  border-radius: 2px;
  transition: border-color 0.2s ease-in-out;
  margin-bottom: 10px;
}

input[type="text"]:focus {
  outline: none;
  border-color: var(--text-color);
}

button {
  padding: 10px 20px;
  margin-top: 5px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

.message {
  text-align: center;
  color: var(--primary-color);
}

#details {
  margin: 20px auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.detail-card {
  background-color: #333;
  padding: 15px;
  border: 1px solid var(--secondary-color);
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-color);
}

.detail-card h3 {
  margin-top: 0;
  text-align: center;
  color: var(--primary-color);
}

.detail-card p {
  margin: 5px 0;
  color: var(--highlight-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: var(--font-size-small);
}

table th {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--text-color);
}

table th:nth-child(1),
table td:nth-child(1) {
  width: 35%;
}

table th:nth-child(2),
table td:nth-child(2) {
  width: 25%;
}

table th:nth-child(3),
table td:nth-child(3) {
  width: 30%;
}

table th:nth-child(4),
table td:nth-child(4) {
  width: 10%;
}

table td {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--secondary-color);
}

table tr:nth-child(odd) {
  background-color: var(--background-color);
  color: var(--text-color);
}

table tr:nth-child(even) {
  background-color: #3c3c3c;
  color: var(--text-color);
}

footer {
  background-color: rgba(0, 0, 0, 0.5);
  user-select: none;
}

.footerContainer {
  padding: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

.footerNav {
  text-align: center;
}

.footerNav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footerNav ul li {
  padding: 0;
}

.footerNav ul li a {
  color: var(--text-color);
  margin: 15px;
  text-decoration: none;
  font-size: var(--font-size-small);
}

.footerNav ul li a:hover {
  color: var(--primary-color);
}

.footerBottom {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1px;
  text-align: center;
}

.footerBottom a {
  color: var(--primary-color);
  text-decoration: none;
}
.footerBottom p {
  color: var(--text-color);
  font-size: var(--font-size-small);
  margin-top: 3px;
  margin-bottom: 3px;
  text-align: center;
}

.designer {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}

.copyright-link {
  color: var(--primary-color);
  text-decoration: none;
}

.copyright-link:hover {
  color: #00ff6a;
}

.footer-container {
  width: 100%;
  background-color: var(--background-color);
  border-top: 1px solid var(--secondary-color);
  position: fixed;
  bottom: 0;
  top: auto;
  right: 0;
}

.disclaimer {
  width: 100%;
  border: 1px solid rgba(241, 6, 6, 0.81);
  background-color: rgba(220, 17, 1, 0.16);
  color: #ff0303;
  margin-bottom: 20px;
  font-size: var(--font-size-small);
  text-align: justify;
  padding: 7px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .footerNav ul {
      flex-direction: column;
  }

  .footerNav ul li {
      padding: 5px 3px;
      border: 1px solid #333;
  }

  h1 {
      font-size: 30px !important;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--text-color);
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../Images/anime.webp') no-repeat center center/cover;
}

.gradient-text {
  font-family: var(--font-family-secondary);
  font-size: 50px;
  margin-top: 20px;
  padding: 10px;
  font-weight: bold;
  background: linear-gradient(270deg, #fff, var(--primary-color), #ff3869, #8be9fd, #fff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 10s ease infinite;
  user-select: none;
}

@keyframes gradientAnimation {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

#scriptGlitch {
  font-size: 30px;
  font-weight: bold;
  margin-top: 20px;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-align: center;
}

#content-preload {
  display: none;
}

.fadeIn {
  animation: fadeIn 0s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.spinner {
  border: 4px solid #f3f3f3; 
  border-top: 4px solid #ff0040; 
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
}
.loader:before,
.loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.loader:after {
  color: #ff0040;
  transform: rotateY(70deg);
  animation-delay: .4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {
  0%,
  100% {
    box-shadow: .2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: .2em .2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 .2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -.2em .2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -.2em -.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: .2em -.2em 0 0 currentcolor;
  }
}


