#interstellar{
   font-family: "Bruno Ace SC";
   position: absolute;
   font-size: 200px;
}
.pfp {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffc200;
  margin-right: 20px;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 20px rgba(255, 194, 0, 0.6),
              0 0 40px rgba(255, 194, 0, 0.3),
              inset 0 0 20px rgba(255, 194, 0, 0.1);
  transition: all 0.3s ease;
}
.ticket {
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  width: 380px;
  height: 180px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 194, 0, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
              inset 0 0 30px rgba(255, 194, 0, 0.05);
}

.ticket.yellow {
  background: linear-gradient(135deg, rgba(255, 194, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
  border: 2px solid #ffc200;
  box-shadow: 0 8px 32px rgba(255, 194, 0, 0.3),
              inset 0 0 40px rgba(255, 194, 0, 0.1);
}

.ticket.white {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2),
              inset 0 0 40px rgba(255, 255, 255, 0.05);
}

.ticket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  border-radius: 16px;
}

.ticket::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 30%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: 16px;
}

.ticket:hover {
  border-color: #ffc200;
  box-shadow: 0 12px 50px rgba(255, 194, 0, 0.8), 
              0 0 30px rgba(255, 194, 0, 0.6),
              inset 0 0 50px rgba(255, 194, 0, 0.15);
}

.ticket.yellow:hover {
  box-shadow: 0 12px 50px rgba(255, 194, 0, 0.9), 
              0 0 40px rgba(255, 194, 0, 0.7),
              inset 0 0 60px rgba(255, 194, 0, 0.2);
}

.ticket.white:hover {
  box-shadow: 0 12px 50px rgba(255, 255, 255, 0.4), 
              0 0 30px rgba(255, 194, 0, 0.6),
              inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.ticket:hover .pfp {
  box-shadow: 0 0 30px rgba(255, 194, 0, 0.9),
              0 0 60px rgba(255, 194, 0, 0.5),
              inset 0 0 25px rgba(255, 194, 0, 0.2);
  transform: scale(1.05);
}

.ticket:hover::before {
  opacity: 1;
  animation: hologram 3s ease infinite;
}

.ticket:hover::after {
  opacity: 1;
}

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

/* Info section styles */
.ticket .info,
.info {
  position: relative !important;
  z-index: 3 !important;
  flex: 1 !important;
  display: block !important;
  text-align: left !important;
}

.ticket .info h3,
.info h3 {
  color: #ffc200 !important;
  font-size: 1.3em !important;
  margin: 0 0 8px 0 !important;
  font-weight: 700 !important;
  text-shadow: 0 0 10px rgba(255, 194, 0, 0.5) !important;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.5px !important;
  display: block !important;
}

.ticket .info p,
.info p {
  margin: 6px 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95em !important;
  line-height: 1.5 !important;
  display: block !important;
}

.ticket .info p:first-of-type,
.info p:first-of-type {
  color: #ffc200 !important;
  font-weight: 600 !important;
  font-size: 0.9em !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 10px !important;
}

.ticket .info p:last-of-type,
.info p:last-of-type {
  font-size: 0.85em !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-style: italic !important;
  line-height: 1.4 !important;
  margin-top: 8px !important;
}
.floating-logo {
  position: absolute;
  width: 60px;
  opacity: 0.18;
  animation: floatlogo 12s ease-in-out infinite;
}

.floating-logo:nth-child(1) { top: 20%; left: 10%; }
.floating-logo:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.floating-logo:nth-child(3) { top: 80%; left: 30%; animation-delay: 4s; }

@keyframes floatlogo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0px); }
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
  .ticket {
    width: 90%;
    max-width: 340px;
    height: auto;
    min-height: 160px;
    padding: 20px 15px;
    margin: 0 auto;
  }
  
  .pfp {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  
  .ticket .info h3,
  .info h3 {
    font-size: 1.1em !important;
  }
  
  .ticket .info p,
  .info p {
    font-size: 0.85em !important;
  }
  
  .ticket .info p:first-of-type,
  .info p:first-of-type {
    font-size: 0.8em !important;
  }
  
  .ticket .info p:last-of-type,
  .info p:last-of-type {
    font-size: 0.8em !important;
  }
}

@media screen and (max-width: 480px) {
  .ticket {
    width: 95%;
    max-width: 320px;
    padding: 18px 12px;
    flex-direction: column;
    text-align: center;
    height: auto;
  }
  
  .pfp {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px auto;
  }
  
  .ticket .info,
  .info {
    text-align: center !important;
  }
  
  .ticket .info h3,
  .info h3 {
    font-size: 1em !important;
  }
  
  .ticket .info p,
  .info p {
    font-size: 0.8em !important;
  }
}
