@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

.participation-button {
    background-color: #000;
    color: #fff;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32.4px;
    font-weight: 600;
    padding: 28.8px 57.6px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1000;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 1.5em;
}

.participation-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.participation-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 화면이 흰색일 때 버튼 스타일 조정 */
.container.white .participation-button {
    background-color: #000;
    color: #fff;
}

.container.white .participation-button:hover {
    background-color: #222;
}

@media (max-width: 768px) {
    .participation-button {
        font-size: 28.8px;
        padding: 25.2px 50.4px;
    }
}