/* Variables */
/* Global Styles */
html {
  cursor: none;
}

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ff007f, #ff8c00, #ffd700);
  background-size: 400% 400%;
  animation: gradient-animation 15s ease infinite;
  z-index: -1;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.content {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  margin: 20px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.header .logo img {
  max-height: 50px;
}

.header .nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.header .nav li {
  margin-left: 20px;
}

.header .nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  cursor: none;
  transition: background-color 0.3s, color 0.3s;
}

.header .nav a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.main {
  padding: 20px 0;
}

.category {
  margin-bottom: 40px;
}

.category h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.category .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.category .card {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  width: 250px;
  height: 300px;
  color: rgba(255, 255, 255, 0.8);
  background-position: center;
  background-size: cover;
}

.category .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px black;
}

.category .card h3 {
  margin-top: 0;
}

.footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 20px 0;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: none;
}

.footer a:hover {
  color: #ff66cc;
}

@media (max-width: 768px) {
  .card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%;
  }
}

/*# sourceMappingURL=X-Code.css.map */