/* home hera core video */
.home-heracore-video {
    @media (48rem <= width < 64rem) {
        height: 40.8%;
        left: 37.5%;
        top: 12%;
    }
}

/* footer right side */
.footer-right-side {
    flex-direction: column;
    @media (width >= 40rem) {
        flex-direction: row;
    }
}

/* footer disclaimer button */
.footer-button {
    background-color: #231e31;
    border-radius: 100px;
    padding: 8px 12px;
    cursor: pointer;
}

.footer-button-text {
    font-family: Noto Sans TC;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Disclaimer Modal */
.disclaimer-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.disclaimer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.disclaimer-dialog {
    position: relative;
    width: calc(100% - 32px);
    max-width: 800px;
    max-height: calc(100dvh - 32px);
    overflow: auto;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    opacity: 0;
    margin: 0;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
}

.disclaimer-close {
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 32px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.disclaimer-title {
    font-family: Noto Sans TC;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 2px;
    color: #231e31;
}

.disclaimer-content {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #d9d9d9;
    padding: 40px;
}

.disclaimer-section-title {
    font-family: Noto Sans TC;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 2px;
    color: #231e31;
    margin-bottom: 16px;
}

.disclaimer-paragraph {
    font-family: Noto Sans TC;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}