
body {
  font-family: 'Rubik Mono One', sans-serif;
  background: linear-gradient(to bottom, #5e1914 0%, #b65e31 70%, #12674a 100%);

  margin: 0;
  padding: 0;
}

.navbar {
  background: linear-gradient(90deg, #5e1914, #b65e31);
   border-top: 5px double #93e9be;
  border-bottom: 5px double #93e9be;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 20px #00000088;
}

.navbar-brand {
  font-family: 'Monoton', cursive;
  color: #ffce1b;
  font-size: 2rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px #12674a;
}

.navbar-nav {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Rubik Mono One', sans-serif;
  color: #93e9be;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.nav-link:hover {
  color: #ffce1b ;
  text-shadow: 0 0 5px #ffce1b;
  transform: scale(1.05);
}

.nav-link.active {
  color: #ffce1b !important;
  text-shadow: 0 0 6px #ffce1b;
}

body > div {
  max-width: 700px;
  margin: 3rem auto 6rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  justify-items: center;
}

.page-title {
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  color: #ffce1b;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 6px #b65e31;
}

.lp-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  border: 6px solid #b0f4e6;
  box-shadow:
    0 0 20px #000000cc,
    inset 0 0 20px #b0f4e6;
  background: radial-gradient(circle at center, #222 60%, #111 100%);
  transition: transform 2s linear;
}

.lp-cover:hover {
  animation: spin 7s linear infinite;
 
}

.lp-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.lp-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #b0f4e6;
  background-color: #b65e31;
  box-shadow: 0 0 8px #3eab75;
  pointer-events: none;
  z-index: 5;
}



.lp-info {
  margin-top: 1rem;
  background-color: #0e3e2ddf;
  border-radius: 10px;
  padding: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  user-select: none;
}

.lp-cover:hover + .lp-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lp-info h3 {
  margin: 0 0 0.3rem 0;
   font-family: 'Monoton', cursive;
  font-size: 1.3rem;
  color: #ffce1b;
}
.lp-info p {
  margin: 0.15rem 0;
  font-family: 'Rubik Mono One', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #e5d5b8;
}

@keyframes spin {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

.tickets-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.lp-item {
  flex: 0 1 calc(30% - 50px);
  box-sizing: border-box;
  margin-bottom: 24px;
  cursor: pointer;
  position: relative;
  width: 240px;
  text-align: center;
  user-select: none;
  font-size: 1rem;
}

.lp-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lp-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.6s ease;
  pointer-events: none;
}



.lp-item:hover .lp-cover img {
  transform: rotate(10deg);
  transition: duration o 0.4s;;
}

.lp-item:hover .lp-center-label {
  transform: translate(-50%, -50%) rotate(360deg);
  transition-duration: 1s;
}

.lp-info {
  margin-top: 10px;
  text-align: center;
  font-family: 'Rubik Mono One', sans-serif;
}

.footer-retro {
  width: 100%;
  background: linear-gradient(90deg, #b65e31, #5e1914);
  color: #e5d5b8;
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Rubik Mono One', sans-serif;
  font-size: 1rem;
  border-top: 4px solid #93e9be;
  letter-spacing: 1px;
  margin-top: 4rem;
  box-shadow: inset 0 8px 10px -6px #00000088;
}




.footer-retro .retro-glow {

  margin-bottom: 0.5rem;
}

.footer-retro .social-links {
  font-size: 0.9rem;
}

.footer-retro .social-links a {
  color: #ffce1b;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer-retro .social-links a:hover {
  color: #ffce1b;
  text-shadow: 0 0 5px #ffce1b;
}

.footer-retro .dot-separator {
  color: #ffce1b;
  margin: 0 0.5rem;
}



@media (max-width: 600px) {
  .lp-item {
    flex: 0 1 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .lp-cover:hover {
    animation: spin 7s linear infinite;
  }
  .lp-cover {
    animation: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .lp-cover {
    animation: spin 7s linear infinite;
  }
}
@media (max-width: 768px) {
  .lp-info {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto;
  }
}

@media (max-width: 900px) {
  .navbar-nav {
    display: flex !important; 
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }
}
