/* zc-card.css - Zer0Con 카드 컴포넌트
 * 블러 스타일의 세련된 박스 디자인 (다크모드 기반)
 */

.zc-card {
  /* 기본 박스 스타일링 */
  position: relative;
  padding: 2rem;
  border: double thick #eea755a2;
  border-radius: 12px;
  background-color: #0000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* 그림자 효과 */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  
  /* 트랜지션 효과 */
  transition: all 0.3s ease;
  
  /* 텍스트 스타일링 */
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  margin-bottom: 1.5rem;
}

/* 호버 효과 */
.zc-card:hover {
  transform: translateY(-3px);
}

/* 글로우 효과 */
.zc-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(54deg, #f7ac543b, transparent, #f7ac543d);
  border-radius: 9px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zc-card:hover::after {
  opacity: 0.4;
}

/* 카드 내부 =========== */

.zc-card hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zc-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.zc-card ul li {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zc-card ul li:last-child {
    border-bottom: none;
}


/* 섹션별 설정  ================================ */
@media (max-width: 767px) {
    #venue-section .zc-card li {
        text-align: left !important;
    }
    #register-section .zc-card * {
        text-align: left !important;
    }
}