/* 상단 메뉴 왼쪽 행사명 색상 */
.bh60-topnav .bh60-topnav__brand,
.bh60-topnav .bh60-topnav__brand:link,
.bh60-topnav .bh60-topnav__brand:visited {
color: var(--bh60-gold) !important;
}
/* 증오비 기록 보기 버튼 */
.bh60-record-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 22px;
width: 350px;
height: 70px;
background: rgba(17, 22, 26, 0.82);
border: 1px solid #e3b653;
color: #e3b653 !important;
font-family: "Noto Sans KR", Arial, sans-serif;
font-size: 18px;
font-weight: 800;
line-height: 1;
text-decoration: none !important;
transition:
background-color 0.2s ease,
color 0.2s ease,
transform 0.2s ease;
}
.bh60-record-button:hover {
background: #e3b653;
color: #15191b !important;
transform: translateY(-2px);
}
.bh60-record-button:focus-visible {
outline: 2px solid #fffaf0;
outline-offset: 4px;
}
@media (max-width: 780px) {
.bh60-record-button {
width: 100%;
max-width: 330px;
height: 60px;
gap: 16px;
font-size: 16px;
}
}