.venues-page {
  padding: 60px 20px;
  background-color: var(--bg-darker-blue);
  min-height: 70vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  color: var(--neon-cyan);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px var(--neon-glow);
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.venue-card {
  background: var(--bg-accent-blue);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.venue-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px var(--neon-glow);
  transform: translatey(-5px);
}

.venue-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.venue-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.venue-card:hover .venue-image {
  transform: scale(1.1);
}

.venue-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--neon-cyan);
  color: var(--bg-dark-blue);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 10px var(--neon-cyan);

  i {
    letter-spacing: 0 !important;
  }
}

.venue-content {
  padding: 20px;
  text-align: center;
}

.venue-name {
  color: var(--text-primary);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.venue-card:hover .venue-name {
  color: var(--neon-cyan);
}

.venue-location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: capitalize;
}

.divider {
  color: var(--neon-cyan);
  font-weight: bold;
}

@media (max-width: 768px) {
  .venues-page {
    padding: 40px 10px;
  }

  .venues-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .venue-image-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 85%;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .venues-grid {
    grid-template-columns: 1fr;
  }

  .venue-name {
    font-size: 1.2rem;
  }
}
