#competitionList .ta_l a {
    display: block;
    padding: 10px 0;
}
#competitionList .ta_l a, #notice-cards .notice-card {
    border-radius: 8px;
    transition: transform 100ms ease, background-color 100ms ease;
    -webkit-tap-highlight-color: rgba(107, 70, 193, .18);
    touch-action: manipulation;
}
#competitionList .ta_l a:active, #competitionList .ta_l a.notice-opening,
#notice-cards .notice-card:active, #notice-cards .notice-card.notice-opening {
    transform: scale(.98);
    background-color: #eee8fb;
}
#notice-navigation-status {
    position: fixed;
    z-index: 100001;
    left: 50%;
    bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    border-radius: 24px;
    padding: 12px 20px;
    background: #30283f;
    color: white;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    animation: notice-arrive 140ms ease-out;
}
@keyframes notice-arrive {
    from { opacity: 0; translate: 0 6px; }
    to { opacity: 1; translate: 0 0; }
}
@media (prefers-reduced-motion: reduce) {
    #competitionList .ta_l a, #notice-cards .notice-card { transition: none; }
    #notice-navigation-status { animation: none; }
}
