/* Hero 區域行動按鈕樣式 */

#heroActions button {
    transition: all 0.3s ease;
}

#heroActions button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#heroActions button:active {
    transform: translateY(-1px);
}

/* 單人遊戲按鈕 */
#enterSinglePlayerBtn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
}

/* 多人遊戲按鈕 */
#enterMultiPlayerBtn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
}

/* 登入遊戲按鈕 */
#heroLoginBtn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

/* 訪客試玩按鈕 */
#heroGuestBtn:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%) !important;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #heroActions {
        flex-direction: column;
        align-items: center;
    }

    #heroActions button {
        width: 100%;
        max-width: 300px;
    }

    #guestActions,
    #loggedInActions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}
